aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pointer_assign_12.f90
blob: d2ed3d3e369bb051198745bacf66abc13cd743fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! PR 70260 - this used to ICE
! Original test case by Gehard Steinmetz
module m
   interface gkind
      procedure g
   end interface
contains
   integer function g()
      g => 1 ! { dg-error "Pointer assignment target cannot be a constant" }
   end
   subroutine f(x)
      character(kind=kind(gkind())) :: x
   end
end