mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
11 lines
191 B
Rust
11 lines
191 B
Rust
// https://github.com/rust-lang/rust/issues/9906
|
|
//@ run-pass
|
|
//@ aux-build:aux-9906.rs
|
|
|
|
extern crate aux_9906 as testmod;
|
|
|
|
pub fn main() {
|
|
testmod::foo();
|
|
testmod::FooBar::new(1);
|
|
}
|