about summary refs log tree commit diff
path: root/src/test/ui/macros/assert.rs
AgeCommit message (Collapse)AuthorLines
2019-01-02make `panictry!` private to libsyntaxAndy Russell-0/+2
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.
2018-12-04emit error with span for empty assertsAndy Russell-0/+4
Fixes #55547.