rust/tests/ui/statics/static-fn-inline-xc.rs
2023-01-11 09:32:08 +00:00

13 lines
214 B
Rust

// run-pass
// aux-build:static_fn_inline_xc_aux.rs
// pretty-expanded FIXME #23616
extern crate static_fn_inline_xc_aux as mycore;
use mycore::num;
pub fn main() {
let _1: f64 = num::Num2::from_int2(1);
}