summary refs log tree commit diff
path: root/src/test/ui/nll/user-annotations/normalization.rs
blob: e0af2e67e1836f4f9a874fa3d1aa306b1cc3bea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test that we enforce a `&'static` requirement that is only visible
// after normalization.

#![feature(nll)]

trait Foo { type Out; }
impl Foo for () { type Out = &'static u32; }

fn main() {
    let a = 22;
    let b: <() as Foo>::Out = &a; //~ ERROR
}