Files
rust/tests/ui/statics/static-fn-inline-xc.rs

13 lines
217 B
Rust
Raw Normal View History

//@ run-pass
//@ aux-build:static_fn_inline_xc_aux.rs
//@ pretty-expanded FIXME #23616
extern crate static_fn_inline_xc_aux as mycore;
2013-01-08 10:35:20 -08:00
use mycore::num;
pub fn main() {
2015-01-25 22:05:03 +01:00
let _1: f64 = num::Num2::from_int2(1);
}