aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr104554.f90
blob: 099f219c85d84dbd746089b34cd53dd0bb9d0cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! PR fortran/104554 - ICE in check_assumed_size_reference
! Contributed by G.Steinmetz

program p
  type t
     integer :: a
  end type
  class(t) :: x(*) ! { dg-error "Assumed size array" }
  x%a = 3
end