mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
214 B
Rust
9 lines
214 B
Rust
//@ 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() {}
|