Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
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
);
}