view gcc/testsuite/gfortran.dg/block_5.f08 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-std=legacy" }
! We want to check for statement functions, thus legacy mode.

! Check for errors with declarations not allowed within BLOCK.

SUBROUTINE proc (a)
  IMPLICIT NONE
  INTEGER :: a

  BLOCK
    INTENT(IN) :: a ! { dg-error "not allowed inside of BLOCK" }
    VALUE :: a ! { dg-error "not allowed inside of BLOCK" }
    OPTIONAL :: a ! { dg-error "not allowed inside of BLOCK" }
  END BLOCK
END SUBROUTINE proc

PROGRAM main
  IMPLICIT NONE

  BLOCK 
    IMPLICIT INTEGER(a-z) ! { dg-error "not allowed inside of BLOCK" }
    INTEGER :: a, b, c, d
    INTEGER :: stfunc
    stfunc(a, b) = a + b ! { dg-error "not allowed inside of BLOCK" }
    EQUIVALENCE (a, b) ! { dg-error "not allowed inside of BLOCK" }
    NAMELIST /NLIST/ a, b ! { dg-error "not allowed inside of BLOCK" }
    COMMON /CBLOCK/ c, d ! { dg-error "not allowed inside of BLOCK" }
  ! This contains is in the specification part.
  CONTAINS ! { dg-error "Unexpected CONTAINS statement" }
  END BLOCK

  BLOCK
    PRINT *, "Hello, world"
  ! This one in the executable statement part.
  CONTAINS ! { dg-error "Unexpected CONTAINS statement" }
  END BLOCK
END PROGRAM main