summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-17732.rs
blob: 8f63d5baef8755621c2b58288d91407b3ef52d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// check-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
// pretty-expanded FIXME #23616

trait Person {
    type string;
    fn dummy(&self) { }
}

struct Someone<P: Person>(std::marker::PhantomData<P>);

fn main() {}