repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
dec_logical_xor_3.f03
blob
ff029fc8f0c0d6e960594a3e4af551b4bb7e7136
1
! { dg-do compile }
2
! { dg-options "-std=f2003" }
3
!
4
! Test errors for logical .XOR. operator with a real standard.
5
!
6
7
implicit none
8
9
logical, volatile :: in1, in2, xor_out
10
xor_out = in1 .xor. in2 ! { dg-error ".XOR. operator" }
11
12
end