summaryrefslogtreecommitdiffstats
path: root/tests/ir/string-literal.slang
blob: d9349593478a93b8f597bba5f3e598d6368e02b8 (plain)
1
2
3
4
5
6
7
8
9
10
//TEST(compute):SIMPLE(filecheck=CHECK):-dump-ir -stage compute -entry main

// CHECK: global_hashed_string_literals("Hello \t\n\0x083 World")
[numthreads(1, 1, 1)]
void main(
    uint tid   : SV_DispatchThreadID)
{
	"Hello \t\n\0x083 World";
}