re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / and_or_xor.f90
blob75f842cc3126385b73a6a369b37a09dc16c5e525
1 ! { dg-do run }
2 program L
3 if (and(.TRUE._1, .TRUE._1) .neqv. .true.) STOP 1
4 if (or(.TRUE._1, .TRUE._1) .neqv. .true.) STOP 2
5 if (xor(.TRUE._1, .TRUE._1) .neqv. .false.) STOP 3
6 end program L