about summary refs log tree commit diff
path: root/tests/ui/statics/static-fn-inline-xc.rs
blob: e75083b2188305acf1b515ee920a0c265f13702a (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass
//@ aux-build:static_fn_inline_xc_aux.rs


extern crate static_fn_inline_xc_aux as mycore;

use mycore::num;

pub fn main() {
    let _1: f64 = num::Num2::from_int2(1);
}