1/* [config]
2 * expect_result: fail
3 * glsl_version: 1.30
4 * require_extensions: GL_ARB_shading_language_420pack
5 * [end config]
6 *
7 * From the GL_ARB_shading_language_420pack spec:
8 *
9 *    "A variable also cannot be declared with both the *in* and the *out*
10 *     qualifiers."
11 *
12 * Test that a variable cannot be declared with both the in and out qualifiers.
13 */
14#version 130
15#extension GL_ARB_shading_language_420pack: enable
16in out float x;
17