summaryrefslogtreecommitdiffstats
path: root/tests/bugs/split-nested-types.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/split-nested-types.slang')
-rw-r--r--tests/bugs/split-nested-types.slang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bugs/split-nested-types.slang b/tests/bugs/split-nested-types.slang
index ccf95d906..3bd4e239f 100644
--- a/tests/bugs/split-nested-types.slang
+++ b/tests/bugs/split-nested-types.slang
@@ -4,11 +4,11 @@ struct A { int x; };
struct B { float y; };
-struct C { Texture2D t; SamplerState s; };
+struct CC { Texture2D t; SamplerState s; };
struct M
{
A a;
B b;
- C c;
+ CC c;
};