Files
rust/tests/ui/feature-gates/allow-features-empty.rs

9 lines
214 B
Rust
Raw Normal View History

//@ compile-flags: -Z allow_features=
2019-03-13 16:29:24 -07:00
// Note: This test uses rustc internal flags because they will never stabilize.
#![feature(lang_items)] //~ ERROR
#![feature(unknown_stdlib_feature)] //~ ERROR
2019-03-13 16:29:24 -07:00
fn main() {}