fff01ccfa8
Fix a number of uncovered deficiencies in diagnostics
10 lines
242 B
Rust
10 lines
242 B
Rust
// gate-test-custom_inner_attributes
|
|
|
|
#[foo] //~ ERROR is currently unknown to the compiler
|
|
mod foo {
|
|
#![foo] //~ ERROR is currently unknown to the compiler
|
|
//~| ERROR non-builtin inner attributes are unstable
|
|
}
|
|
|
|
fn main() {}
|