summaryrefslogtreecommitdiffstats
path: root/tests/bugs/gh-666.slang
blob: ff891d7948e0ae8693bd53b26902f07542c07bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// gh-666.slang

//TEST:COMPARE_HLSL: -profile ps_5_0 -entry main

static const uint foo = 1;
static const uint bar = foo;

float4 main() : SV_TARGET
{
	return bar;
}