Skip to content

Commit f5e1dcb

Browse files
committed
add missing semicolon
1 parent 60371a6 commit f5e1dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgpu/shader/validation/parse/statement_behavior.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ g.test('valid_statements')
115115

116116
const kInvalidFunctions = {
117117
next_for_type: `fn foo() -> bool { }`,
118-
next_return_for_type: `fn foo() -> bool { if true { return true } }`,
118+
next_return_for_type: `fn foo() -> bool { if true { return true; } }`,
119119
};
120120

121121
g.test('invalid_functions')

0 commit comments

Comments
 (0)