summaryrefslogtreecommitdiff
path: root/tests/diagnostics/incomplete-type.slang
blob: 8736730450f3d456fb31e4d77c6920c27bb1e5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):

extern struct ExtType;

struct MyType
{
    ExtType arr[2];
}

// CHECK: ([[#@LINE+1]]): error 31204
ConstantBuffer<MyType> buffer;