mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 17:34:56 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
fn f<T>() -> bool {
|
|
struct S(T); //~ ERROR can't use generic parameters from outer item
|
|
|
|
true
|
|
}
|
|
|
|
fn main() {
|
|
let b = f::<isize>();
|
|
assert!(b);
|
|
}
|