mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
212 B
Rust
13 lines
212 B
Rust
// run-pass
|
|
// aux-build:static_fn_trait_xc_aux.rs
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
extern crate static_fn_trait_xc_aux as mycore;
|
|
|
|
use mycore::num;
|
|
|
|
pub fn main() {
|
|
let _1: f64 = num::Num2::from_int2(1);
|
|
}
|