blob: 9f3dfebcc812c5500907132447ef505635249227 [file] [log] [blame] [edit]
//@ 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
}