summary refs log tree commit diff
path: root/tests/ui/structs/ice-struct-tail-normalization-113272.rs
blob: 85d3d1b4886f756e941d6d1af85b32a62652336c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
trait Trait {
    type RefTarget;
}

impl Trait for () where Missing: Trait {}
//~^ ERROR cannot find type `Missing` in this scope
//~| ERROR not all trait items implemented, missing: `RefTarget`

struct Other {
    data: <() as Trait>::RefTarget,
}

fn main() {
    unsafe {
        std::mem::transmute::<Option<()>, Option<&Other>>(None);
    }
}