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