rust/src/test/ui/feature-gates/feature-gate-crate_visibility_modifier.rs
2018-12-25 21:08:33 -07:00

9 lines
157 B
Rust

crate struct Bender { //~ ERROR `crate` visibility modifier is experimental
earth: bool,
fire: bool,
air: bool,
water: bool,
}
fn main() {}