blob: 80c7f5e56ea289357f2d5e5cbc9c5970d052e8c2 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag10783.d(14): Error: no property `type` for `event` of type `diag10783.Event`
fail_compilation/diag10783.d(14): Error: undefined identifier `En`
---
*/
struct Event { }
void main()
{
Event event;
switch (event.type) with (En)
{
default:
}
}