DCD/tests/tc020/file.d

13 lines
125 B
D

struct TestStruct
{
int[] array;
int*[] arrayOfPointers;
int* pointer;
int plain;
}
unittest
{
auto ts = TestStruct(
}