mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
228 B
Rust
12 lines
228 B
Rust
// aux-build:issue-11680.rs
|
|
|
|
extern crate issue_11680 as other;
|
|
|
|
fn main() {
|
|
let _b = other::Foo::Bar(1);
|
|
//~^ ERROR: enum `Foo` is private
|
|
|
|
let _b = other::test::Foo::Bar(1);
|
|
//~^ ERROR: enum `Foo` is private
|
|
}
|