blob: 88a6093492715bcc5e59a372a4c284de63c70119 (
plain)
1
2
3
4
5
6
7
8
|
// compile-flags: -Z allow_features=
// Note: This test uses rustc internal flags because they will never stabilize.
#![feature(lang_items)] //~ ERROR
#![feature(unknown_stdlib_feature)] //~ ERROR
fn main() {}
|