ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / compiler / initialization-incompatible-type-propagation-1.frag
blobdf102c754a6f27e30228af463cc3f53f99d22a8e
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 // [end config]
5 //
6 // Initializing a variable using the variable with a wrong type
7 // should not affect the type of the variable being initialized.
8 // While we cannot check emitted error message the test at least
9 // should not crash, see bug:
10 // https://bugs.freedesktop.org/show_bug.cgi?id=107547
12 #version 110
14 void f() {
15     vec4 a = vec2(0.0);
16     a.w -= 1.0;