aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr114739.f90
blob: eb82cb3f65b10144cff6a70a2b75f8ae2f3763ae (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! The fix here was triggered by an ICE prior to r14-9489-g3fd46d859cda10
! Before that gfortran gave an incorrect "no implicit type" error for all
! three statements.
program main
  implicit complex(z)
  implicit character(c)
  z2%re = 1.
  z2%im = 2.
  print *, z2, c%kind
end