OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [derived_recursion.f90] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
! { dg-do compile }
! { dg-do compile }
! { dg-options "-O0" }
! { dg-options "-O0" }
! Tests patch for PR24158 - The module would compile, in spite
! Tests patch for PR24158 - The module would compile, in spite
! of the recursion between the derived types. This would cause
! of the recursion between the derived types. This would cause
! an ICE in the commented out main program. The standard demands
! an ICE in the commented out main program. The standard demands
! that derived type components be already defined, to break
! that derived type components be already defined, to break
! recursive derived type definitions.
! recursive derived type definitions.
!
!
! Contributed by Paul Thomas 
! Contributed by Paul Thomas 
!
!
module snafu
module snafu
  type       ::   a
  type       ::   a
    integer    :: v
    integer    :: v
    type(b)    :: i ! { dg-error "not been previously defined" }
    type(b)    :: i ! { dg-error "not been previously defined" }
  end type a
  end type a
  type       ::   b
  type       ::   b
    type(a)    :: i
    type(a)    :: i
  end type b
  end type b
  type (a)   :: foo
  type (a)   :: foo
end module snafu
end module snafu
!  use snafu
!  use snafu
!  foo%v = 1
!  foo%v = 1
!  end
!  end
! { dg-final { cleanup-modules "snafu" } }
! { dg-final { cleanup-modules "snafu" } }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.