blob: 5e11fc4fcfb58c9384ae85e69e43a928c81b0139 [file] [log] [blame]
// check-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() {}