mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
10 lines
82 B
Rust
10 lines
82 B
Rust
pub fn foo() {
|
|
bar::<usize>();
|
|
}
|
|
|
|
pub fn bar<T>() {
|
|
baz();
|
|
}
|
|
|
|
fn baz() {}
|