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.
24 lines
574 B
24 lines
574 B
! RUN: %S/test_errors.sh %s %t %f18
|
|
! Check that computed goto express must be a scalar integer expression
|
|
! TODO: PGI, for example, accepts a float & converts the value to int.
|
|
|
|
REAL R
|
|
COMPLEX Z
|
|
LOGICAL L
|
|
INTEGER, DIMENSION (2) :: B
|
|
|
|
!ERROR: Must have INTEGER type, but is REAL(4)
|
|
GOTO (100) 1.5
|
|
!ERROR: Must have INTEGER type, but is LOGICAL(4)
|
|
GOTO (100) .TRUE.
|
|
!ERROR: Must have INTEGER type, but is REAL(4)
|
|
GOTO (100) R
|
|
!ERROR: Must have INTEGER type, but is COMPLEX(4)
|
|
GOTO (100) Z
|
|
!ERROR: Must be a scalar value, but is a rank-1 array
|
|
GOTO (100) B
|
|
|
|
100 CONTINUE
|
|
|
|
END
|