Files
rust/tests/ui/issues/issue-11680.rs

12 lines
229 B
Rust
Raw Normal View History

//@ aux-build:issue-11680.rs
extern crate issue_11680 as other;
fn main() {
let _b = other::Foo::Bar(1);
2016-02-22 22:33:38 +00:00
//~^ ERROR: enum `Foo` is private
let _b = other::test::Foo::Bar(1);
2016-02-22 22:33:38 +00:00
//~^ ERROR: enum `Foo` is private
}