Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
146 B
Rust
16 lines
146 B
Rust
//@ run-pass
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
fn first() {}
|
|
}
|
|
impl Foo {
|
|
fn second() {}
|
|
}
|
|
|
|
pub fn main() {
|
|
Foo::first();
|
|
Foo::second();
|
|
}
|