It seems surprising that the following code generates a `assert.failed:division.by.zero` error rather than `not.wellformed:division.by.zero`: ``` method foo() { //:: ExpectedOutput(not.wellformed:division.by.zero) assert 42 / 0 == 1 } ```