
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
198 B
Rust
12 lines
198 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
trait Person {
|
|
type string;
|
|
fn dummy(&self) { }
|
|
}
|
|
|
|
struct Someone<P: Person>(std::marker::PhantomData<P>);
|
|
|
|
fn main() {}
|