summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/derived_result.f90
blob: 76d4a4941e0e2c1d33a0357b877b9787b286e371 (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
!
! PR 78593: [6/7 Regression] ICE in gfc_match_varspec, at fortran/primary.c:2053
!
! Contributed by Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de>

type(t) function add (x, y)    ! { dg-error "is not accessible" }
  integer, intent(in) :: x, y
  add%a = x + y                ! { dg-error "Unclassifiable statement" }
end