framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / glsl-1.50 / compiler / illegal-assignment-to-unsized-array-in-unnamed-ifc-block.vert
blobda6982d260c1768e1533fb0106906e90d70ef2b9
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Test that if an interface block contains an unsized array, it is
8 // illegal to use it as the LHS of a bulk assignment (even if both the
9 // LHS and the RHS of the assignment have the same implied array
10 // size).
12 // This test uses an unnamed interface block.
14 #version 150
16 out block {
17   float foo[];
20 void main()
22   float bar[2];
23   bar[0] = 1.0;
24   bar[1] = 2.0;
25   foo = bar;
26   foo[1] = 3.0;