view gcc/testsuite/gfortran.dg/typebound_call_24.f03 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
!
! PR 54243: [OOP] ICE (segfault) in gfc_type_compatible for invalid BT_CLASS
!
! Contributed by Sylwester Arabas <slayoo@staszic.waw.pl>

module aqq_m
  type :: aqq_t
  contains
    procedure :: aqq_init
  end type 
 contains
  subroutine aqq_init(this)
    class(aqq_t) :: this
  end subroutine
end module

program bug2
  use aqq_m
  class(aqq_t) :: aqq  ! { dg-error "must be dummy, allocatable or pointer" }
  call aqq%aqq_init
end program