Skip to content

Commit 7f395a7

Browse files
Add new zero size array test. (#6379)
Closes #2890 Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
1 parent 7abc69e commit 7f395a7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// array-zero-size.slang
2+
3+
// Test that array size cannot be zero
4+
5+
//TEST:SIMPLE:
6+
7+
[numthreads(4, 1, 1)]
8+
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
9+
{
10+
bar();
11+
}
12+
13+
func bar() -> int[0]; // expected-error 30025 "array size must be larger than zero."

0 commit comments

Comments
 (0)