aboutsummaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/bit-not-09.frag
blob: 4f3a648974412340efa46af2d905ccf7a5bce860 (plain)
1
2
3
4
5
6
7
8
9
10
11
// [config]
// expect_result: fail
// glsl_version: 1.20
// [end config]

/* FAIL - bitwise operations aren't supported in 1.20. */
#version 120
void main()
{
    int x = ~false;
}