URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [char_array_constructor.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }module zinteger :: icharacter(6) :: a(2) = (/ ('main ' , i = 1, 2) /)character(6) :: b(2) = (/ 'abcd ' , 'efghij' /)end moduleprogram yuse zif (a(1) /= 'main ') call abortif (a(2) /= 'main ') call abortif (b(1) /= 'abcd ') call abortif (b(2) /= 'efghij') call abortend program y! { dg-final { cleanup-modules "z" } }
