summary refs log tree commit diff
path: root/src/test/ui/feature-gate/allow-features-empty.rs
blob: 83250052cb506f83b7e9612104b24fa511dfc993 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-flags: -Z allow_features=
// Note: This test uses rustc internal flags because they will never stabilize.

#![feature(rustc_diagnostic_macros)] //~ ERROR

#![feature(rustc_const_unstable)] //~ ERROR

#![feature(lang_items)] //~ ERROR

fn main() {}