Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
131 B
Rust
12 lines
131 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-9155.rs
|
|
|
|
|
|
extern crate issue_9155;
|
|
|
|
struct Baz;
|
|
|
|
pub fn main() {
|
|
issue_9155::Foo::new(Baz);
|
|
}
|