aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr95829.f90
blob: 081d647c7c060a381551eb509555d3e83c4ec71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
!
! Declaration of b used to be a bogus failure.

subroutine s (a, b, c, d, e, f, g)
  type(*) :: a
  type(* ) :: b
  type( *) :: c
  type( * ) :: d
  type(*  ) :: e
  type(  *) :: f
  type(  *  ) :: g
end