rust/src/test/run-pass/impl-privacy-xc-1.rs
2018-12-25 21:08:33 -07:00

11 lines
185 B
Rust

// aux-build:impl_privacy_xc_1.rs
// pretty-expanded FIXME #23616
extern crate impl_privacy_xc_1;
pub fn main() {
let fish = impl_privacy_xc_1::Fish { x: 1 };
fish.swim();
}