rust/tests/ui/traits/anon_trait_static_method_exe.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
243 B
Rust
Raw Normal View History

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