mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
10 lines
195 B
Rust
10 lines
195 B
Rust
// https://github.com/rust-lang/rust/issues/7178
|
|
//@ run-pass
|
|
//@ aux-build:aux-7178.rs
|
|
|
|
extern crate aux_7178 as cross_crate_self;
|
|
|
|
pub fn main() {
|
|
let _ = cross_crate_self::Foo::new(&1);
|
|
}
|