Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / spv.debugPrintf_Error.frag
blobc1980a7fe812d67c1176d0e6cd578464ed17ed6d
1 #version 450\r
2 #extension GL_EXT_debug_printf : enable\r
3 \r
4 void main()\r
5 {\r
6     // invalid hex sequence\r
7     debugPrintfEXT("\xZ");\r
8 \r
9     // not an octal sequence\r
10     debugPrintfEXT("\8");\r
11 }\r