2018-11-05 04:00:03 +00:00
|
|
|
// aux-build:issue-11680.rs
|
2014-05-06 16:45:21 -07:00
|
|
|
|
2015-03-19 15:39:03 -07:00
|
|
|
extern crate issue_11680 as other;
|
2014-05-06 16:45:21 -07:00
|
|
|
|
|
|
|
fn main() {
|
2014-11-06 00:05:53 -08:00
|
|
|
let _b = other::Foo::Bar(1);
|
2016-02-22 22:33:38 +00:00
|
|
|
//~^ ERROR: enum `Foo` is private
|
2014-05-06 16:45:21 -07:00
|
|
|
|
2014-11-06 00:05:53 -08:00
|
|
|
let _b = other::test::Foo::Bar(1);
|
2016-02-22 22:33:38 +00:00
|
|
|
//~^ ERROR: enum `Foo` is private
|
2014-05-06 16:45:21 -07:00
|
|
|
}
|