rustc/tests/ui/proc-macro/issue-118455-skip-err-builtin.rs
2024-06-19 10:24:51 +02:00

7 lines
163 B
Rust

#![some_nonexistent_attribute]
//~^ ERROR cannot find attribute `some_nonexistent_attribute` in this scope
#[derive(Debug)]
pub struct SomeUserCode;
fn main() {}