blob: 8ef402708f1ec21a2658dc7910a223119429e889 [file] [log] [blame]
LoopDawgc5991672018-05-17 13:03:12 -06001struct Test0 {};
2struct Test1 { float f; };
3
4void main()
5{
6 {
7 Test0 a;
8 Test0 b = (Test0)a;
9 }
10
11 {
12 Test1 a;
13 Test1 b = (Test1)a;
14 }
15
16 {
17 Test0 a[2];
18 Test0 b[2] = (Test0[2])a;
19 }
20
21 {
22 Test1 a[2];
23 Test1 b[2] = (Test1[2])a;
24 }
25}