mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 06:03:16 +00:00
11 lines
273 B
Rust
11 lines
273 B
Rust
|
// compile-flags: -Z allow_features=rustc_diagnostic_macros,lang_items
|
||
|
// Note: This test uses rustc internal flags because they will never stabilize.
|
||
|
|
||
|
#![feature(rustc_diagnostic_macros)]
|
||
|
|
||
|
#![feature(rustc_const_unstable)] //~ ERROR
|
||
|
|
||
|
#![feature(lang_items)]
|
||
|
|
||
|
fn main() {}
|