view gcc/testsuite/gfortran.dg/extends_5.f03 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! Some errors for derived type extension.
!
! Contributed by Paul Thomas  <pault@gcc.gnu.org>
!
module m
  use iso_c_binding
  type :: date
    sequence
    integer :: yr, mon
    integer,public :: day
  end type
  type, bind(c) :: dt
    integer(c_int) :: yr, mon
    integer(c_int) :: day
  end type
end module m

  use m
  type, extends(date) :: datetime ! { dg-error "because it is a SEQUENCE type" }
  end type ! { dg-error "Expecting END PROGRAM" }

  type, extends(dt) :: dt_type ! { dg-error "because it is BIND" }
  end type ! { dg-error "Expecting END PROGRAM" }
end