mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
141 B
D
9 lines
141 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail9710.d(9): Error: static variable `e` cannot be read at compile time
|
|
---
|
|
*/
|
|
|
|
int* e;
|
|
enum v = e[1];
|