repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
class_assign_2.f90
blob
3b8db4adebd6a6d75ef22f106393d0fa1ab98cad
1
! { dg-do link }
2
!
3
! PR 86484:[OOP] Undefined symbol when using polymorphic intrinsic assignment
4
!
5
! Contributed by Rich Townsend <townsend@astro.wisc.edu>
6
7
program
test_assign
8
9
implicit none
10
11
type
::
foo_t
12
end type
13
14
type
,
extends
(
foo_t
) ::
bar_t
15
end type
16
17
class
(
foo_t
),
allocatable
::
f
18
type
(
bar_t
) ::
b
19
20
f
=
b
21
22
end