summaryrefslogtreecommitdiffstats
path: root/tests/bugs/gh-6488-where-lookup.slang
blob: 118a69bbe011f56069c83a41093155aa34414380 (plain)
1
2
3
4
5
6
7
8
9
10
11
//TEST:SIMPLE(filecheck=CHECK): -target spirv

// CHECK: OpEntryPoint

interface IRealArray<T : __BuiltinFloatingPointType, int D> {}
extension<T : __BuiltinFloatingPointType, int D> vector<T, D> : IRealArray<T, D> where T.Differential : __BuiltinFloatingPointType { }


[numthreads(1,1,1)]
void main()
{}