
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
13 lines
139 B
Rust
13 lines
139 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
pub struct Foo;
|
|
|
|
mod bar {
|
|
use Foo;
|
|
|
|
impl Foo {
|
|
fn baz(&self) {}
|
|
}
|
|
}
|
|
fn main() {}
|