
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
14 lines
171 B
Rust
14 lines
171 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
pub mod foo {
|
|
use super::Bar;
|
|
|
|
pub struct FooStruct { bar : Bar }
|
|
}
|
|
|
|
pub enum Bar {
|
|
Bar0 = 0 as isize
|
|
}
|
|
|
|
pub fn main() {}
|