2019-07-27 00:54:25 +03:00
|
|
|
// run-pass
|
2013-01-31 12:40:05 -08:00
|
|
|
// aux-build:impl_privacy_xc_1.rs
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate impl_privacy_xc_1;
|
2013-01-31 12:40:05 -08:00
|
|
|
|
2013-02-17 14:36:43 -08:00
|
|
|
pub fn main() {
|
2013-01-31 12:40:05 -08:00
|
|
|
let fish = impl_privacy_xc_1::Fish { x: 1 };
|
|
|
|
fish.swim();
|
|
|
|
}
|