]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/diag10783.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag10783.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag10783.d(14): Error: no property 'type' for type 'Event'
5 fail_compilation/diag10783.d(14): Error: undefined identifier `En`
6 ---
7 */
8
9 struct Event { }
10
11 void main()
12 {
13 Event event;
14 switch (event.type) with (En)
15 {
16 default:
17 }
18 }