aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/stfunc_3.f90
blob: 90980a924485cd08eec237a5df393359b8df4291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! { dg-options "-std=legacy" }
!
! Tests the fix for PR20867 in which implicit typing was not done within
! statement functions and so was not confirmed or not by subsequent
! type delarations.
!
! Contributed by Joost VandeVondele  <jv244@cam.ac.uk>
!
  REAL :: st1
  st1(I)=I**2
  REAL :: I ! { dg-error " already has basic type of INTEGER" }
  END