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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [proc_ptr_comp_16.f90] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
!
3
! PR 41106: [F03] Procedure Pointers with CHARACTER results
4
!
5
! Contributed by Janus Weil 
6
 
7
module m
8
 type :: t
9
  procedure(abc), pointer, nopass :: ptr
10
 end type
11
contains
12
 function abc(i)
13
  integer :: i
14
  character(len=i) :: abc
15
  abc = 'abcde'
16
 end function abc
17
end module m
18
 
19
use m
20
 type(t) :: x
21
 character(len=4) :: str
22
 x%ptr => abc
23
 print *,x%ptr(4)
24
 if (x%ptr(4)/='abcd') call abort
25
 str = x%ptr(3)
26
 if (str/='abc') call abort()
27
end
28
 
29
! { dg-final { cleanup-modules "m" } }
30
 

powered by: WebSVN 2.1.0

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