2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2012-11-26 20:08:01 -06:00
|
|
|
// aux-build:explicit_self_xcrate.rs
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate explicit_self_xcrate;
|
2012-11-26 20:08:01 -06:00
|
|
|
use explicit_self_xcrate::{Foo, Bar};
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-05-25 05:17:19 -05:00
|
|
|
let x = Bar { x: "hello".to_string() };
|
2012-11-26 20:08:01 -06:00
|
|
|
x.f();
|
|
|
|
}
|