1 // Since the structs are readonly, the expression here is a jit time constant.
6 struct B { int dummy; public C c; }
7 struct C { int dummy; public D d; }
8 struct D { public int i; }
10 static readonly B b
, bb
;
15 for (int i
= 0; i
< 50000000; i
++) {
16 if (b
.c
.d
.i
!= bb
.c
.d
.i
)