blob: 44c492b43f0a8d419eceb49bbdf23a3f71a41e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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;
}
|