We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d863101 commit 9504252Copy full SHA for 9504252
1 file changed
src/webgpu/shader/validation/statement/continuing.spec.ts
@@ -163,6 +163,10 @@ const kTests = {
163
src: 'loop { if a == 4 { break; } continuing { for(;a < 4;) { return vec4f(2); } } }',
164
pass: false,
165
},
166
+ continuing_semicolon_break_if: {
167
+ src: 'loop { continuing { ; break if (true); } }',
168
+ pass: true,
169
+ },
170
};
171
172
g.test('placement')
0 commit comments