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

9 lines
144 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail240.d(9): Error: type `F` is not an expression
---
*/
class F { int x; }
alias typeof(typeof(F).x) b;