blob: 947a3afb795751a137cf5266bb20d85ebb7bb957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
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;
}
|