0a6fb84738
This commit completely removes usage of the `panictry!` macro from outside libsyntax. The macro causes parse errors to be fatal, so using it in libsyntax_ext caused parse failures *within* a syntax extension to be fatal, which is probably not intended. Furthermore, this commit adds spans to diagnostics emitted by empty extensions if they were missing, à la #56491.
8 lines
238 B
Rust
8 lines
238 B
Rust
#![feature(global_asm)]
|
|
|
|
fn main() {
|
|
global_asm!(); //~ ERROR requires a string literal as an argument
|
|
global_asm!(struct); //~ ERROR expected expression
|
|
global_asm!(123); //~ ERROR inline assembly must be a string literal
|
|
}
|