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

Subversion Repositories openrisc

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

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

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do compile }
2
!
3
! PR fortran/47042
4
!
5
! Contribued by Jerry DeLisle
6
!
7
 
8
program bug
9
 
10
contains
11
function get_cstring ()
12
  character              :: get_cstring
13
  character, pointer     :: ptmp
14
  character, allocatable :: atmp
15
 
16
  get_cstring = ptmp(i) ! { dg-error "must have an explicit function interface" }
17
  get_cstring = atmp(i) ! { dg-error "must have an explicit function interface" }
18
end function
19
 
20
function get_cstring2 ()
21
  EXTERNAL :: ptmp, atmp
22
  character              :: get_cstring2
23
  character, pointer     :: ptmp
24
  character, allocatable :: atmp
25
 
26
  get_cstring2 = atmp(i) ! { dg-error "must have an explicit function interface" }
27
 
28
  ! The following is regarded as call to a procedure pointer,
29
  ! which is in principle valid:
30
  get_cstring2 = ptmp(i)
31
end function
32
 
33
end program

powered by: WebSVN 2.1.0

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