1#version 450 2#extension GL_EXT_debug_printf : enable 3 4void main() 5{ 6 // invalid hex sequence 7 debugPrintfEXT("\xZ"); 8 9 // not an octal sequence 10 debugPrintfEXT("\8"); 11} 12