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

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;
}