Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.dg / and_or_xor.f90
blob412008b77bfeccb796dd4762d8021b6c0ace4a79
1 ! { dg-do run }
2 program L
3 if (and(.TRUE._1, .TRUE._1) .neqv. .true.) call abort
4 if (or(.TRUE._1, .TRUE._1) .neqv. .true.) call abort
5 if (xor(.TRUE._1, .TRUE._1) .neqv. .false.) call abort
6 end program L