MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / noreturn_expr.d
blobc72bade8fa519716b2e8b61aea983ba24fc96ad5
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/noreturn_expr.d(10): Error: type `noreturn` is not an expression
5 ---
6 */
8 int v(e)()
10 return e + 0;
13 int main()
15 return v!(noreturn)();