Mercurial > hg > CbC > CbC_gcc
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 |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! | |
3 ! PR 48291: [4.6/4.7 Regression] [OOP] internal compiler error, new_symbol(): Symbol name too long | |
4 ! | |
5 ! Contributed by Adrian Prantl <adrian@llnl.gov> | |
6 | |
7 module Overload_AnException_Impl | |
8 type :: Overload_AnException_impl_t | |
9 end type | |
10 contains | |
11 subroutine ctor_impl(self) | |
12 class(Overload_AnException_impl_t) :: self | |
13 end subroutine | |
14 end module |