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.fortran-torture/] [execute/] [strcommon_1.f90] - Rev 303
Compare with Previous | Blame | View Log
! PR14081 character variables in common blocks.subroutine test1implicit nonecommon /block/ ccharacter(len=12) :: cif (c .ne. "Hello World") call abortend subroutinesubroutine test2implicit nonecommon /block/ acharacter(len=6), dimension(2) :: aif ((a(1) .ne. "Hello") .or. (a(2) .ne. "World")) call abortend subroutineprogram strcommon_1implicit nonecommon /block/ s, tcharacter(len=6) :: s, ts = "Hello "t = "World "call test1call test2end program
