dmd/compiler/test/fail_compilation/test8751.d
2022-07-09 18:53:07 +02:00

9 lines
160 B
D

/*
TEST_OUTPUT:
---
fail_compilation/test8751.d(7): Error: undefined identifier `Bar`
---
*/
Bar foo3(ref const int x) pure {
return y => x > y; // error
}