summaryrefslogtreecommitdiffstats
path: root/tests/bugs/gh-463.slang
blob: 95890eba5c677c01e7b46b55280f9202b3113197 (plain)
1
2
3
4
5
6
7
8
9
10
11
//TEST:SIMPLE:

// undefined identifier used in `[instance(...)]` attribute

struct V { float4 u : U; };

[instance(COUNT)]
void myGS(triangle V input[3], TriangleStream<V> output)
{
	
}