summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-trait-associated-type-region.rs
blob: 0dfc9f098a6de555b95edc87c1a0e4f064e144a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that we check associated type default values for WFedness.

#![feature(associated_type_defaults)]

#![allow(dead_code)]

trait SomeTrait<'a> {
    type Type1;
    type Type2 = &'a Self::Type1;
    //~^ ERROR E0309
}


fn main() { }