blob: 338f20c5c9d6341c4d9f042eaea7363173a899eb [file] [log] [blame]
John Stiles6798e5d2020-09-17 18:20:26 -04001void non_constant_test_in_static_switch() {
2 int x = int(sqrt(1));
3 @switch (x) {
4 case 1:
5 sk_FragColor = half4(1);
6 break;
7 default:
8 sk_FragColor = half4(0);
9 }
10}