mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
433da1fc04
They pass fine.
10 lines
82 B
Rust
10 lines
82 B
Rust
pub fn foo() {
|
|
bar::<usize>();
|
|
}
|
|
|
|
pub fn bar<T>() {
|
|
baz();
|
|
}
|
|
|
|
fn baz() {}
|