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