rust/tests/ui/malformed/malformed-special-attrs.rs
2026-02-05 11:44:34 -08:00

15 lines
309 B
Rust

#![deny(invalid_doc_attributes)]
#[cfg_attr] //~ ERROR malformed `cfg_attr` attribute
struct S1;
#[cfg_attr = ""] //~ ERROR malformed `cfg_attr` attribute
struct S2;
#[derive] //~ ERROR malformed `derive` attribute
struct S3;
#[derive = ""] //~ ERROR malformed `derive` attribute
struct S4;
fn main() {}