annotate gcc/testsuite/gfortran.dg/class_42.f03 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 !
kono
parents:
diff changeset
3 ! PR 48291: [4.6/4.7 Regression] [OOP] internal compiler error, new_symbol(): Symbol name too long
kono
parents:
diff changeset
4 !
kono
parents:
diff changeset
5 ! Contributed by Adrian Prantl <adrian@llnl.gov>
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 module Overload_AnException_Impl
kono
parents:
diff changeset
8 type :: Overload_AnException_impl_t
kono
parents:
diff changeset
9 end type
kono
parents:
diff changeset
10 contains
kono
parents:
diff changeset
11 subroutine ctor_impl(self)
kono
parents:
diff changeset
12 class(Overload_AnException_impl_t) :: self
kono
parents:
diff changeset
13 end subroutine
kono
parents:
diff changeset
14 end module