view gcc/testsuite/gfortran.dg/class_nameclash.f90 @ 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
line wrap: on
line source

! { dg-do run }
!
! try to provoke class name clashes in gfc_build_class_symbol
!
module test_module

  implicit none

  type, public :: test_p
    private
    class (test_p), pointer :: next => null()
  end type test_p

  type, public :: test
!   Error in "call do_it (x)" below:
!   Type mismatch in argument 'x' at (1); passed CLASS(test_p) to CLASS(test)
    class (test), pointer :: next => null()
  end type test

contains

  subroutine do_it (x)
    class (test_p), target :: x

    x%next => x
    return
  end subroutine do_it

end module test_module

use test_module

  implicit none
  class (test_p), pointer :: x

  allocate (x)
  call do_it (x)
  deallocate (x)
end