blob: c6fd3363ea8591222b02cbb0903f8e117bb27330 [file] [log] [blame]
dan sinclair58752db2023-11-23 17:40:23 +00001#include <metal_stdlib>
2using namespace metal;
3
4void a() {
5 int a = 0;
6 switch(a) {
7 default:
8 {
9 return;
10 }
11 }
12 /* unreachable */
13}