mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +00:00
11 lines
167 B
Rust
11 lines
167 B
Rust
//@ run-pass
|
|
//@ aux-build:impl_privacy_xc_1.rs
|
|
|
|
|
|
extern crate impl_privacy_xc_1;
|
|
|
|
pub fn main() {
|
|
let fish = impl_privacy_xc_1::Fish { x: 1 };
|
|
fish.swim();
|
|
}
|