2025-03-29 17:24:03 +00:00
|
|
|
// Features above `cfg(false)` are in effect in a fully unconfigured crate (issue #104633).
|
2023-03-14 12:09:39 +00:00
|
|
|
|
|
|
|
//@ check-pass
|
|
|
|
//@ compile-flags: --crate-type lib
|
|
|
|
|
|
|
|
#![feature(decl_macro)]
|
2025-03-29 17:24:03 +00:00
|
|
|
#![cfg(false)]
|
2024-09-20 09:18:47 +00:00
|
|
|
#![feature(box_patterns)]
|
2023-03-14 12:09:39 +00:00
|
|
|
|
2023-04-10 11:20:38 +00:00
|
|
|
macro mac() {} // OK
|
2023-03-14 12:09:39 +00:00
|
|
|
|
|
|
|
trait A = Clone; //~ WARN trait aliases are experimental
|
|
|
|
//~| WARN unstable syntax can change at any point in the future
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let box _ = Box::new(0); //~ WARN box pattern syntax is experimental
|
|
|
|
//~| WARN unstable syntax can change at any point in the future
|
|
|
|
}
|