2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2013-12-03 15:15:17 -08:00
|
|
|
//@ aux-build:priv-impl-prim-ty.rs
|
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
|
2015-03-27 10:22:44 -07:00
|
|
|
extern crate priv_impl_prim_ty as bar;
|
2013-12-03 15:15:17 -08:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
bar::frob(1);
|
2013-12-03 15:15:17 -08:00
|
|
|
|
|
|
|
|
}
|