OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [impure_actual_1.f90] - Blame information for rev 704

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do compile }
2
! Tests the fix for PR25056 in which a non-PURE procedure could be
3
! passed as the actual argument to a PURE procedure.
4
!
5
! Contributed by Joost VandeVondele  
6
!
7
MODULE M1
8
CONTAINS
9
 FUNCTION L()
10
  L=1
11
 END FUNCTION L
12
 PURE FUNCTION J(K)
13
   INTERFACE
14
     PURE FUNCTION K()
15
     END FUNCTION K
16
   END INTERFACE
17
   J=K()
18
 END FUNCTION J
19
END MODULE M1
20
USE M1
21
 write(6,*) J(L) ! { dg-error "Mismatch in PURE attribute" }
22
END
23
 
24
! { dg-final { cleanup-modules "m1" } }
25
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.