aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr104572.f90
blob: 59fd688d7981197db08969d4a3c69c9d624703ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-do compile }
! { dg-additional-options "-w" }
! PR fortran/104572 - ICE in gfc_resolve_finalizers
! Contributed by G. Steinmetz

module m
  type t
   contains
     final :: s
  end type
contains
  subroutine s(*) ! { dg-error "Argument of FINAL procedure" }
  end
end