view gcc/testsuite/gfortran.dg/dec_structure_14.f90 @ 128:fe568345ddd5

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

  ! { dg-do "compile" }
  ! { dg-options "-fdec-structure" }
  !
  ! Test that structures inside a common block do not require the
  ! SEQUENCE attribute, as derived types do.
  !

common var

structure /s/
  integer i
  integer j
  real r
end structure

record /s/ var

end