summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/structuredbuffer-with-unbounded.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/diagnostics/structuredbuffer-with-unbounded.slang')
-rw-r--r--tests/diagnostics/structuredbuffer-with-unbounded.slang20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/diagnostics/structuredbuffer-with-unbounded.slang b/tests/diagnostics/structuredbuffer-with-unbounded.slang
new file mode 100644
index 000000000..7c2a3bd47
--- /dev/null
+++ b/tests/diagnostics/structuredbuffer-with-unbounded.slang
@@ -0,0 +1,20 @@
+// Test that StructuredBuffer of struct with unbounded array is not allowed
+
+//TEST:SIMPLE(filecheck=CHECK): -target spirv -allow-glsl -stage compute -entry computeMain
+
+// Struct containing unbounded array (must be last member)
+struct StructWithUnbounded
+{
+ float value;
+ int data[]; // Unbounded array must be last member
+}
+
+// StructuredBuffer of struct with unbounded array - should error
+//CHECK: ([[# @LINE+1]]): error 30028
+StructuredBuffer<StructWithUnbounded> myBuffer;
+
+[numthreads(1, 1, 1)]
+void computeMain()
+{
+ // Empty - we're just testing the declarations
+} \ No newline at end of file