mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
178 B
D
12 lines
178 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail40.d(11): Error: variable `yuiop` cannot be read at compile time
|
|
---
|
|
*/
|
|
|
|
struct Qwert
|
|
{
|
|
int[20] yuiop;
|
|
int* asdfg = yuiop.ptr;
|
|
}
|