mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
316 B
Rust
15 lines
316 B
Rust
//@ run-pass
|
|
//@ aux-build:inner_static.rs
|
|
|
|
|
|
extern crate inner_static;
|
|
|
|
pub fn main() {
|
|
let a = inner_static::A::<()> { v: () };
|
|
let b = inner_static::B::<()> { v: () };
|
|
let c = inner_static::test::A::<()> { v: () };
|
|
assert_eq!(a.bar(), 2);
|
|
assert_eq!(b.bar(), 4);
|
|
assert_eq!(c.bar(), 6);
|
|
}
|