mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
13 lines
243 B
Rust
13 lines
243 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);
|
|
}
|