aboutsummaryrefslogtreecommitdiff
path: root/flang/test/Semantics/resolve126.f90
blob: 6313f8c539bf8c009137bbc18efd1ab1385ca864 (plain)
1
2
3
4
5
6
7
! RUN: %python %S/test_errors.py %s %flang_fc1
!ERROR: Attributes 'INTRINSIC' and 'EXTERNAL' conflict with each other
real, external, intrinsic :: exp
!ERROR: Symbol 'sin' cannot have both EXTERNAL and INTRINSIC attributes
external sin
intrinsic sin
end