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