Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/associated_3.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! Test for fix of PR27655 | |
3 ! | |
4 !Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | |
5 integer, pointer :: i | |
6 print *, associated(NULL(),i) ! { dg-error "not permitted as actual argument" } | |
7 print *, associated(i,NULL()) ! { dg-error "not permitted as actual argument" } | |
8 end |