PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_nameclash.f90
blob227d865962fe1e114ed6754814911287cbbb228d
1 ! { dg-do run }
3 ! try to provoke class name clashes in gfc_build_class_symbol
5 module test_module
7 implicit none
9 type, public :: test_p
10 private
11 class (test_p), pointer :: next => null()
12 end type test_p
14 type, public :: test
15 ! Error in "call do_it (x)" below:
16 ! Type mismatch in argument 'x' at (1); passed CLASS(test_p) to CLASS(test)
17 class (test), pointer :: next => null()
18 end type test
20 contains
22 subroutine do_it (x)
23 class (test_p), target :: x
25 x%next => x
26 return
27 end subroutine do_it
29 end module test_module
31 use test_module
33 implicit none
34 class (test_p), pointer :: x
36 allocate (x)
37 call do_it (x)
38 deallocate (x)
39 end