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

11 lines
165 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag16271.d(10): Error: found `x` when expecting function literal following `ref`
---
*/
void main()
{
auto fun = ref x;
}