1// [config] 2// expect_result: fail 3// glsl_version: 1.30 4// [end config] 5// 6// Check that 'this' is a reserved keyword. 7 8#version 130 9 10int f() 11{ 12 int this; 13 return 0; 14} 15