mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 00:03:49 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
// https://github.com/rust-lang/rust/issues/5997
|
|
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);
|
|
}
|