diff options
| author | Ellie Hermaszewska <ellieh@nvidia.com> | 2025-10-13 23:14:45 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-13 22:14:45 +0800 |
| commit | 96df31a9fa53e3d897a2b7c4eef021f37f421c91 (patch) | |
| tree | 46cfb983265ce63b619da3b18004d2c163371d2c /tests/diagnostics/nested-struct-with-unbounded.slang | |
| parent | f5a3a6dc6a98d22964154f809f9e0dcae30ab67f (diff) | |
Fix segfault on arrays of structs containing parameter blocks (#8555)
Closes https://github.com/shader-slang/slang/issues/8154 However there
is further design work to do on implementing the "NonAddressableType"
suggestion
Diffstat (limited to 'tests/diagnostics/nested-struct-with-unbounded.slang')
| -rw-r--r-- | tests/diagnostics/nested-struct-with-unbounded.slang | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/diagnostics/nested-struct-with-unbounded.slang b/tests/diagnostics/nested-struct-with-unbounded.slang new file mode 100644 index 000000000..4271ad9ab --- /dev/null +++ b/tests/diagnostics/nested-struct-with-unbounded.slang @@ -0,0 +1,31 @@ +// Test that arrays and StructuredBuffers of nested structs with unbounded arrays are 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 +} + +// Nested case +struct NestedUnbounded +{ + int id; + StructWithUnbounded nested; // Struct with unbounded array member +} + +// Array of nested struct - should error +//CHECK: ([[# @LINE+1]]): error 30027 +NestedUnbounded nestedArray[5]; + +// StructuredBuffer of nested struct - should error +//CHECK: ([[# @LINE+1]]): error 30028 +StructuredBuffer<NestedUnbounded> nestedBuffer; + +[numthreads(1, 1, 1)] +void computeMain() +{ + // Empty - we're just testing the declarations +}
\ No newline at end of file |
