From 96df31a9fa53e3d897a2b7c4eef021f37f421c91 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Mon, 13 Oct 2025 23:14:45 +0900 Subject: 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 --- tests/diagnostics/array-parameterblock.slang | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 tests/diagnostics/array-parameterblock.slang (limited to 'tests/diagnostics/array-parameterblock.slang') diff --git a/tests/diagnostics/array-parameterblock.slang b/tests/diagnostics/array-parameterblock.slang deleted file mode 100644 index 566694e37..000000000 --- a/tests/diagnostics/array-parameterblock.slang +++ /dev/null @@ -1,10 +0,0 @@ -//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK): - -[numthreads(4, 1, 1)] -void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) -{ -} - -//CHECK: ([[# @LINE+1]]): error 30027 -uniform ParameterBlock qs[2]; - -- cgit v1.2.3