PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / dec_logical_xor_2.f90
blob4e43179f868f86fe0d5b767938cc1d7af25dc2c0
1 ! { dg-do compile }
2 ! { dg-options "-std=gnu" }
4 ! Test warnings for logical .XOR. operator without -std=legacy.
7 implicit none
9 logical, volatile :: in1, in2, xor_out
10 xor_out = in1 .xor. in2 ! { dg-warning ".XOR. operator" }
12 end