summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/diagnostics/incomplete-type.slang11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/diagnostics/incomplete-type.slang b/tests/diagnostics/incomplete-type.slang
deleted file mode 100644
index 873673045..000000000
--- a/tests/diagnostics/incomplete-type.slang
+++ /dev/null
@@ -1,11 +0,0 @@
-//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):
-
-extern struct ExtType;
-
-struct MyType
-{
- ExtType arr[2];
-}
-
-// CHECK: ([[#@LINE+1]]): error 31204
-ConstantBuffer<MyType> buffer;