mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
241 B
Rust
13 lines
241 B
Rust
// 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);
|
|
}
|