mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
224 B
Rust
15 lines
224 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-12660-aux.rs
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
extern crate issue12660aux;
|
|
|
|
use issue12660aux::{my_fn, MyStruct};
|
|
|
|
#[allow(path_statements)]
|
|
fn main() {
|
|
my_fn(MyStruct);
|
|
MyStruct;
|
|
}
|