mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-19 11:07:32 +00:00
10 lines
82 B
Rust
10 lines
82 B
Rust
![]() |
pub fn foo() {
|
||
|
bar::<usize>();
|
||
|
}
|
||
|
|
||
|
pub fn bar<T>() {
|
||
|
baz();
|
||
|
}
|
||
|
|
||
|
fn baz() {}
|