rust/tests/ui/statics/static-fn-inline-xc.rs
2024-02-16 20:02:50 +00:00

13 lines
217 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);
}