mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 03:18:04 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
//@ run-pass
|
|
//@ aux-build:impl-privacy-cross-crate-1.rs
|
|
|
|
|
|
extern crate impl_privacy_cross_crate_1;
|
|
|
|
pub fn main() {
|
|
let fish = impl_privacy_cross_crate_1::Fish { x: 1 };
|
|
fish.swim();
|
|
}
|