URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [bad_automatic_objects_1.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! Tests the fix for 25103, in which the presence of automatic objects! in the main program and the specification part of a module was not! detected.!! Contributed by Joost VandeVondele <jv244@cam.ac.uk>!module foointeger :: iend module foomodule baruse foointeger, dimension (i) :: j ! { dg-error "must have constant shape" }character (len = i) :: c1 ! { dg-error "must have constant character length" }end module barprogram foobaruse foointeger, dimension (i) :: k ! { dg-error "must have constant shape" }character (len = i) :: c2 ! { dg-error "must have constant character length" }end program foobar! { dg-final { cleanup-modules "foo bar" } }
