2025-02-07 15:58:00 +11:00
|
|
|
// check that `pattern_complexity_limit` is feature-gated
|
|
|
|
|
|
|
|
|
|
#![pattern_complexity_limit = "42"]
|
2025-05-18 18:35:13 +02:00
|
|
|
//~^ ERROR: use of an internal attribute [E0658]
|
|
|
|
|
//~| NOTE the `#[pattern_complexity_limit]` attribute is an internal implementation detail that will never be stable
|
|
|
|
|
//~| NOTE: the `#[pattern_complexity_limit]` attribute is used for rustc unit tests
|
2025-02-07 15:58:00 +11:00
|
|
|
|
|
|
|
|
fn main() {}
|