rust/src/test/ui/span/issue-36530.rs
Vadim Petrochenkov fff01ccfa8 Do not abort compilation if expansion produces errors
Fix a number of uncovered deficiencies in diagnostics
2018-12-27 15:51:36 +03:00

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() {}