2017-11-24 13:21:43 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
#![feature(crate_visibility_modifier)]
|
|
|
|
|
|
|
|
mod rank {
|
|
|
|
pub use self::Professor::*;
|
2018-01-12 15:41:45 -06:00
|
|
|
//~^ ERROR enum is private and its variants cannot be re-exported
|
2017-11-24 13:21:43 -06:00
|
|
|
pub use self::Lieutenant::{JuniorGrade, Full};
|
2018-01-12 15:41:45 -06:00
|
|
|
//~^ ERROR variant `JuniorGrade` is private and cannot be re-exported
|
|
|
|
//~| ERROR variant `Full` is private and cannot be re-exported
|
2017-11-24 13:21:43 -06:00
|
|
|
pub use self::PettyOfficer::*;
|
2018-01-12 15:41:45 -06:00
|
|
|
//~^ ERROR enum is private and its variants cannot be re-exported
|
2017-11-24 13:21:43 -06:00
|
|
|
pub use self::Crewman::*;
|
2018-01-12 15:41:45 -06:00
|
|
|
//~^ ERROR enum is private and its variants cannot be re-exported
|
2017-11-24 13:21:43 -06:00
|
|
|
|
|
|
|
enum Professor {
|
|
|
|
Adjunct,
|
|
|
|
Assistant,
|
|
|
|
Associate,
|
|
|
|
Full
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Lieutenant {
|
|
|
|
JuniorGrade,
|
|
|
|
Full,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(in rank) enum PettyOfficer {
|
|
|
|
SecondClass,
|
|
|
|
FirstClass,
|
|
|
|
Chief,
|
|
|
|
MasterChief
|
|
|
|
}
|
|
|
|
|
|
|
|
crate enum Crewman {
|
|
|
|
Recruit,
|
|
|
|
Apprentice,
|
|
|
|
Full
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|