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