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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [whole_file_20.f03] - Blame information for rev 705

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

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do compile }
2
! { dg-options "-fwhole-file -fcoarray=single" }
3
!
4
! Procedures with dummy arguments that are coarrays or polymorphic
5
! must have an explicit interface in the calling routine.
6
!
7
 
8
MODULE classtype
9
  type :: t
10
    integer :: comp
11
  end type
12
END MODULE
13
 
14
PROGRAM main
15
  USE classtype
16
  CLASS(t), POINTER :: tt
17
 
18
  INTEGER :: coarr[*]
19
 
20
  CALL coarray(coarr)         ! { dg-error " must have an explicit interface" }
21
  CALL polymorph(tt)          ! { dg-error " must have an explicit interface" }
22
END PROGRAM
23
 
24
SUBROUTINE coarray(a)
25
  INTEGER :: a[*]
26
END SUBROUTINE
27
 
28
SUBROUTINE polymorph(b)
29
  USE classtype
30
  CLASS(t) :: b
31
END SUBROUTINE
32
 
33
! { dg-final { cleanup-modules "classtype" } }

powered by: WebSVN 2.1.0

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