URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [pr23373-1.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
program mainimplicit nonereal, dimension (:), pointer :: xx => null ()x => test (x)if (.not. associated (x)) call abortif (size (x) .ne. 10) call abortcontainsfunction test (p)real, dimension (:), pointer :: p, testif (associated (p)) call abortallocate (test (10))if (associated (p)) call abortend function testend program main
Go to most recent revision | Compare with Previous | Blame | View Log
