mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 09:13:07 +03:00
95ff642797
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
13 lines
198 B
Rust
13 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() {}
|