mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
172 B
Rust
11 lines
172 B
Rust
fn f<Z>() -> bool {
|
|
enum E { V(Z) }
|
|
//~^ ERROR can't use generic parameters from outer function
|
|
true
|
|
}
|
|
|
|
fn main() {
|
|
let b = f::<isize>();
|
|
assert!(b);
|
|
}
|