Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
statics
/
static-fn-trait-xc.rs
blob: 73747416c604dbbeb8bb954d238e71aef5867739 [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:static_fn_trait_xc_aux.rs
extern
crate static_fn_trait_xc_aux
as
mycore
;
use
mycore
::
num
;
pub
fn
main
()
{
let
_1
:
f64
=
num
::
Num2
::
from_int2
(
1
);
}