summaryrefslogtreecommitdiff
path: root/tests/ir/string-literal.slang
blob: be05f6a8d617b11c0ab8d8976921a773effc66b8 (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_DispatchThreadIndex)
{
	"Hello \t\n\0x083 World";
}