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.
11 lines
236 B
11 lines
236 B
4 months ago
|
! RUN: %S/test_errors.sh %s %t %f18
|
||
|
integer :: x
|
||
|
!ERROR: The type of 'x' has already been declared
|
||
|
real :: x
|
||
|
integer(8) :: i
|
||
|
parameter(i=1,j=2,k=3)
|
||
|
integer :: j
|
||
|
!ERROR: The type of 'k' has already been implicitly declared
|
||
|
real :: k
|
||
|
end
|