• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1void a1() { float[-2]; }
2void b1() { float[-1]; }
3void c1() { float[0]; }
4void d1() { float[1.5]; }
5void e1() { float[4000000000]; }
6void f1() { float[true]; }
7void g1() { float[false]; }
8void h1() { float[int2(2, 2)]; }
9void i1() { float[]; }
10void j1() { float[int3(4000000000)]; }
11
12void a2() { float x[-2]; }
13void b2() { float x[-1]; }
14void c2() { float x[0]; }
15void d2() { float x[1.5]; }
16void e2() { float x[4000000000]; }
17void f2() { float x[true]; }
18void g2() { float x[false]; }
19void h2() { float x[int2(2, 2)]; }
20void i2() { float x[]; }
21void j2() { float x[int3(4000000000)]; }
22