mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +00:00
9 lines
214 B
Rust
9 lines
214 B
Rust
//@ 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() {}
|