diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/external_implicit_none.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/external_implicit_none.f90 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/external_implicit_none.f90 b/gcc/testsuite/gfortran.dg/external_implicit_none.f90 new file mode 100644 index 000000000..43cfb2848 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/external_implicit_none.f90 @@ -0,0 +1,11 @@ +! { dg-do compile } +! Tests fix for PR18737 - ICE on external symbol of unknown type. +program test + implicit none + real(8) :: x + external bug ! { dg-error "has no IMPLICIT type" } + + x = 2 + print *, bug(x) + +end program test
\ No newline at end of file |