blob: 51d9adccd7372184b1c14fb713a0fe1e088b264f [file] [log] [blame]
// Test that we enforce a `&'static` requirement that is only visible
// after normalization.
#![feature(nll)]
#![ignore(unused)]
trait Foo { type Out; }
impl Foo for () { type Out = &'static u32; }
fn main() {
let a = 22;
let b: <() as Foo>::Out = &a; //~ ERROR
}