Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
traits
/
anon_trait_static_method_exe.rs
blob: b4930295499f7757def156d276d6e97ad17c0f34 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
non_camel_case_types
)]
// aux-build:anon_trait_static_method_lib.rs
extern
crate anon_trait_static_method_lib
;
use
anon_trait_static_method_lib
::
Foo
;
pub
fn
main
()
{
let
x
=
Foo
::
new
();
println
!(
"{}"
,
x
.
x
);
}