summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/variable-redeclaration.slang.expected
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-01-15 20:43:01 -0800
committerGitHub <noreply@github.com>2025-01-15 20:43:01 -0800
commit387f2be1e48a805ef0da34510a5ae0ebc0ba9c3e (patch)
tree8769f2b809fae510cfab39ff430063978ec3abb3 /tests/diagnostics/variable-redeclaration.slang.expected
parent6db69eae7ecfb5111a48723d3f3c4104c7da880a (diff)
Inline global constants that contains opaque handles for legalization. (#6098)
* Inline global constants that contains opaque handles for legalization. * Add diagnostics on opaque type global variables. * Fix. * Fix test.
Diffstat (limited to 'tests/diagnostics/variable-redeclaration.slang.expected')
-rw-r--r--tests/diagnostics/variable-redeclaration.slang.expected6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/diagnostics/variable-redeclaration.slang.expected b/tests/diagnostics/variable-redeclaration.slang.expected
index 944037b1c..1998c13c8 100644
--- a/tests/diagnostics/variable-redeclaration.slang.expected
+++ b/tests/diagnostics/variable-redeclaration.slang.expected
@@ -18,6 +18,12 @@ tests/diagnostics/variable-redeclaration.slang(51): error 30200: declaration of
tests/diagnostics/variable-redeclaration.slang(50): note: see previous declaration of 'size'
int size,
^~~~
+tests/diagnostics/variable-redeclaration.slang(14): error 30076: global variable cannot have opaque type.
+static Texture2D gA;
+ ^~
+tests/diagnostics/variable-redeclaration.slang(14): note: do you intend to define a `uniform` parameter instead?
+static Texture2D gA;
+ ^~
tests/diagnostics/variable-redeclaration.slang(21): error 30200: declaration of 'y' conflicts with existing declaration
int y = x;
^