rust/tests/ui/proc-macro/issue-118455-skip-err-builtin.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
163 B
Rust
Raw Normal View History

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