blob: 0b1857ae3df30e9bab06075a7ff00c02b739a731 [file] [log] [blame]
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);
}