mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
135 B
D
8 lines
135 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail239.d(8): Error: type `F` is not an expression
|
|
---
|
|
*/
|
|
class F { int x; }
|
|
alias typeof(F).x b;
|