aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/whole_file_17.f90
blob: a2a9d15151194208ac235d47e78f28a26e1a156a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
! { dg-do compile }
! { dg-options "-pedantic -fwhole-file" }
!
! PR fortran/30668
!

integer(8) function two()
  two = 2
end function two

CHARACTER(len=8) function string()
  string = "gfortran"
end function string


program xx
  INTEGER :: a
  CHARACTER(len=4) :: s, string   ! { dg-error "Character length mismatch" }

  a = two()                       ! { dg-error "Return type mismatch" }
  s = string()
end program xx