rust/src/test/ui/issues/issue-17732.rs
2020-01-06 09:51:23 -05:00

14 lines
229 B
Rust

// 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() {}