2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2012-12-13 14:55:08 -08:00
|
|
|
//@ aux-build:static_fn_trait_xc_aux.rs
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-27 10:58:12 -07:00
|
|
|
extern crate static_fn_trait_xc_aux as mycore;
|
2012-12-13 14:55:08 -08:00
|
|
|
|
2013-01-08 10:35:20 -08:00
|
|
|
use mycore::num;
|
2012-12-13 14:55:08 -08:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
let _1: f64 = num::Num2::from_int2(1);
|
2012-12-13 14:55:08 -08:00
|
|
|
}
|