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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [enum_4.f90] - Blame information for rev 695

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 695 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.