3 ! PR 48059: [4.6 Regression][OOP] ICE in in gfc_conv_component_ref: character function of extended type
5 ! Contributed by Hans-Werner Boschmann <boschmann@tp1.physik.uni-siegen.de>
11 type,extends(a_type) :: b_type
14 function a_string(this) result(form)
15 class(a_type),intent(in)::this
16 character(max(1,this%length))::form
18 subroutine b_sub(this)
19 class(b_type),intent(inout),target::this
20 print *,a_string(this)