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.
7 lines
239 B
Rust
7 lines
239 B
Rust
fn main() {
|
|
assert!(); //~ ERROR requires a boolean expression
|
|
assert!(struct); //~ ERROR expected expression
|
|
debug_assert!(); //~ ERROR requires a boolean expression
|
|
debug_assert!(struct); //~ ERROR expected expression
|
|
}
|