You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
670 B
31 lines
670 B
! RUN: %S/test_errors.sh %s %t %f18
|
|
|
|
! 15.6.2.5(3)
|
|
|
|
module m1
|
|
implicit logical(a-b)
|
|
interface
|
|
module subroutine sub1(a, b)
|
|
real, intent(in) :: a
|
|
real, intent(out) :: b
|
|
end
|
|
logical module function f()
|
|
end
|
|
end interface
|
|
end
|
|
submodule(m1) sm1
|
|
contains
|
|
module procedure sub1
|
|
!ERROR: Left-hand side of assignment is not modifiable
|
|
a = 1.0
|
|
b = 2.0
|
|
!ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types REAL(4) and LOGICAL(4)
|
|
b = .false.
|
|
end
|
|
module procedure f
|
|
f = .true.
|
|
!ERROR: No intrinsic or user-defined ASSIGNMENT(=) matches operand types LOGICAL(4) and REAL(4)
|
|
f = 1.0
|
|
end
|
|
end
|