Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/class_25.f03 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! | |
3 ! PR [OOP] Compile-time errors on typed allocation and pointer function result assignment | |
4 ! | |
5 ! Contributed by Damian Rouson <damian@rouson.net> | |
6 | |
7 module m | |
8 | |
9 implicit none | |
10 | |
11 type foo | |
12 end type | |
13 | |
14 type ,extends(foo) :: bar | |
15 end type | |
16 | |
17 contains | |
18 | |
19 function new_bar() | |
20 class(foo) ,pointer :: new_bar | |
21 allocate(bar :: new_bar) | |
22 end function | |
23 | |
24 end module | |
25 | |
26 end |