MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail11748.d
blob7b6a6c8a7d1d68fccfae93ba5f49609dbc6c2a79
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail11748.d(12): Error: expression `my_function(0)` is `void` and has no value
5 ---
6 */
8 void main()
10 enum my_template(alias T) = T.stringof;
11 void my_function(int i) { }
12 my_template!(my_function(0));