mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
273 B
Rust
12 lines
273 B
Rust
fn main() {}
|
|
|
|
#[allow { foo_lint } ]
|
|
//~^ ERROR wrong meta list delimiters
|
|
//~| HELP the delimiters should be `(` and `)`
|
|
fn delim_brace() {}
|
|
|
|
#[allow [ foo_lint ] ]
|
|
//~^ ERROR wrong meta list delimiters
|
|
//~| HELP the delimiters should be `(` and `)`
|
|
fn delim_bracket() {}
|