Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_assign_2.f90
blob3b8db4adebd6a6d75ef22f106393d0fa1ab98cad
1 ! { dg-do link }
3 ! PR 86484:[OOP] Undefined symbol when using polymorphic intrinsic assignment
5 ! Contributed by Rich Townsend <townsend@astro.wisc.edu>
7 program test_assign
9 implicit none
11 type :: foo_t
12 end type
14 type, extends (foo_t) :: bar_t
15 end type
17 class(foo_t), allocatable :: f
18 type(bar_t) :: b
20 f = b
22 end