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