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/] [pr23373-2.f90] - Rev 303
Compare with Previous | Blame | View Log
program mainimplicit nonereal, dimension (:), pointer :: xx => null ()x => test ()if (.not. associated (x)) call abortif (size (x) .ne. 10) call abortcontainsfunction test()real, dimension (:), pointer :: testif (associated (x)) call abortallocate (test (10))if (associated (x)) call abortend function testend program main
