mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 00:06:56 +00:00
11 lines
168 B
Rust
11 lines
168 B
Rust
fn f<Z>() -> bool {
|
|
enum E { V(Z) }
|
|
//~^ ERROR can't use generic parameters from outer item
|
|
true
|
|
}
|
|
|
|
fn main() {
|
|
let b = f::<isize>();
|
|
assert!(b);
|
|
}
|