Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / gfortran.dg / finalize_22.f90
blob57fa6e78de315b403cb47e02a1fece70141578e7
1 ! { dg-do compile }
3 ! PR 58470: [4.9 Regression] [OOP] ICE on invalid with FINAL procedure and type extension
5 ! Contributed by Andrew Benson <abensonca@gmail.com>
7 module cf
8 type :: cfml
9 contains
10 final :: mld
11 end type cfml
12 type, extends(cfml) :: cfmde
13 end type cfmde
14 contains
15 subroutine mld(s) ! { dg-error "must be of type" }
16 class(cfml), intent(inout) :: s
17 end subroutine mld
18 end module cf
20 ! { dg-final { cleanup-modules "cf" } }