RISC-V: Refactor Dynamic LMUL codes
[official-gcc.git] / gcc / testsuite / gfortran.dg / parens_2.f90
blobdc5965de0147f05eac9d55fc8b3737842394b5aa
1 ! PR 25048
2 ! { dg-do compile }
3 ! Originally contributed by Joost VandeVondele
4 INTEGER, POINTER :: I
5 CALL S1((I)) ! { dg-error "Actual argument for .i. at .1. must be a pointer or a valid target" }
6 CONTAINS
7 SUBROUTINE S1(I)
8 INTEGER, POINTER ::I
9 END SUBROUTINE S1
10 END