blob: 7993bbb38bb4abc7160e3a6ed4a94b532ec9c214 [file] [log] [blame]
// compile-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
trait Person {
type string;
fn dummy(&self) { }
}
struct Someone<P: Person>(std::marker::PhantomData<P>);
fn main() {}