RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_44.f03
blobf8e4004c026830f38a9bc0a33d14bdee158fd822
1 ! { dg-do compile }
3 ! PR 49112: [4.6/4.7 Regression] [OOP] Missing type-bound procedure, "duplicate save" warnings and internal compiler error
5 ! Contributed by John <jwmwalrus@gmail.com>
7     implicit none
8     save
10     type :: DateTime
11     end type
13     class(DateTime), allocatable :: dt
15 end