rust/tests/ui/stability-attribute/ctor-stability.rs

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

9 lines
126 B
Rust
Raw Normal View History

// aux-build:ctor-stability.rs
// check-pass
extern crate ctor_stability;
fn main() {
let _ = ctor_stability::Foo::A;
}