view gcc/testsuite/gfortran.dg/pointer_intent_2.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-std=f95" }
! { dg-shouldfail "Fortran 2003 feature with -std=f95" }
!
! Pointer intent test
! PR fortran/29624
!
! Fortran 2003 features in Fortran 95
program test
 implicit none
 integer, pointer :: p
 allocate(p)
 p = 33
 call a(p) ! { dg-error "Type mismatch in argument" }
contains
  subroutine a(p)! { dg-error "has no IMPLICIT type" }
    integer, pointer,intent(in) :: p ! { dg-error "POINTER attribute conflicts with INTENT attribute" }
  end subroutine
end program