Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_logical_xor_3.f03
blobff029fc8f0c0d6e960594a3e4af551b4bb7e7136
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! Test errors for logical .XOR. operator with a real standard.
7 implicit none
9 logical, volatile :: in1, in2, xor_out
10 xor_out = in1 .xor. in2 ! { dg-error ".XOR. operator" }
12 end