lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / finalize_22.f90
blobcad4481579654a4c9e96da06c10eb7a7afe26c96
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