blob: 51d9adccd7372184b1c14fb713a0fe1e088b264f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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
}
|