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/] [function_kinds_3.f90] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }!! PR fortran/34254!! The character-kind parameter was not accepted.!module minteger, parameter :: char_t = kind('a')end module mcharacter(1,char_t) function test1()use mtest1 = 'A'end function test1character(len=1,kind=char_t) function test2()use mtest2 = 'A'end function test2character(kind=char_t,len=1) function test3()use mtest3 = 'A'end function test3character(1,kind=char_t) function test4()use mtest4 = 'A'end function test4! { dg-final { cleanup-modules "m" } }
Go to most recent revision | Compare with Previous | Blame | View Log
