blob: 3319c809b8fcd34d3f1844706493aee6fac3a8ee [file] [log] [blame]
Ben Claytonb05e1852021-11-23 20:45:51 +00001[numthreads(1, 1, 1)]
2void unused_entry_point() {
3 return;
4}
5
6void a() {
7 {
8 int a_1 = 1;
9 int b = a_1;
10 }
Antonio Maioranoe14a27b2022-09-19 14:05:21 +000011 const int a_2 = 1;
12 const int b = a_2;
Ben Claytonb05e1852021-11-23 20:45:51 +000013}