mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
10 lines
82 B
Rust
10 lines
82 B
Rust
pub fn foo() {
|
|
bar::<usize>();
|
|
}
|
|
|
|
pub fn bar<T>() {
|
|
baz();
|
|
}
|
|
|
|
fn baz() {}
|