summaryrefslogtreecommitdiff
path: root/tests/ir/string-literal.slang
blob: 224d64b7ab8b6ddc94a5a10d9c4954695dd655be (plain)
1
2
3
4
5
6
7
8
9
//TEST(compute):SIMPLE:-dump-ir -stage compute -entry main

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