OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [enum_4.f90] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 303 jeremybenn
! Program to test the default initialisation of enumerators inside different program unit
2
 
3
module mod
4
  implicit none
5
  enum, bind (c)
6
    enumerator :: red , yellow, blue
7
    enumerator :: green
8
  end enum
9
end module mod
10
 
11
program main
12
  use mod
13
  implicit none
14
 
15
  if (red /= 0 ) call abort
16
  if (yellow /= 1) call abort
17
  if (blue /= 2) call abort
18
  if (green /= 3) call abort
19
end program main

powered by: WebSVN 2.1.0

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