re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / whole_file_17.f90
bloba2a9d15151194208ac235d47e78f28a26e1a156a
1 ! { dg-do compile }
2 ! { dg-options "-pedantic -fwhole-file" }
4 ! PR fortran/30668
7 integer(8) function two()
8 two = 2
9 end function two
11 CHARACTER(len=8) function string()
12 string = "gfortran"
13 end function string
16 program xx
17 INTEGER :: a
18 CHARACTER(len=4) :: s, string ! { dg-error "Character length mismatch" }
20 a = two() ! { dg-error "Return type mismatch" }
21 s = string()
22 end program xx