We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It seems surprising that the following code generates a assert.failed:division.by.zero error rather than not.wellformed:division.by.zero:
assert.failed:division.by.zero
not.wellformed:division.by.zero
method foo() { //:: ExpectedOutput(not.wellformed:division.by.zero) assert 42 / 0 == 1 }