rust/src/test/compile-fail/static-region-bound.rs

10 lines
162 B
Rust
Raw Normal View History

fn f<T:&static>(_: T) {}
fn main() {
let x = @3;
f(x);
let x = &3;
f(x); //~ ERROR instantiating a type parameter with an incompatible type
}