dmd/compiler/test/fail_compilation/diag10783.d
Nick Treleaven 56b14c11ff
Show type location for 'no property' error (#15586)
* Show type location for 'no property' error

* Remove local path from test output
2023-09-08 16:44:42 +03:00

19 lines
376 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag10783.d(15): Error: no property `type` for `event` of type `diag10783.Event`
fail_compilation/diag10783.d(10): struct `Event` defined here
fail_compilation/diag10783.d(15): Error: undefined identifier `En`
---
*/
struct Event { }
void main()
{
Event event;
switch (event.type) with (En)
{
default:
}
}