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);
}