cmake: add workaround for CMP0148
[piglit.git] / examples / glsl_parser_test / bit-logic.vert
blob9b7ffedd5df027b29461f8a22fd7a61065b0a7df
1 /* The config section below is required.
2  *
3  * [config]
4  * # The config section may contain comments.
5  * expect_result: fail
6  * glsl_version: 1.30
7  * [end config]
8  *
9  * Description: bit-and with argument type (int, uint)
10  *
11  * From page 50 (page 56 of PDF) of the GLSL 1.30 spec:
12  *     "The fundamental types of the operands (signed or unsigned) must match"
13  */
15 #version 130
16 void main() {
17     int x = int(7) & uint(1);