mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
7 lines
163 B
Rust
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() {}
|