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.0rc3/] [gcc/] [testsuite/] [gfortran.dg/] [overload_2.f90] - Blame information for rev 516

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do compile }
2
! Test the fix for PR32157, in which overloading 'LEN', as
3
! in 'test' below would cause a compile error.
4
!
5
! Contributed by Michael Richmond 
6
!
7
subroutine len(c)
8
  implicit none
9
  character :: c
10
  c = "X"
11
end subroutine len
12
 
13
subroutine test()
14
  implicit none
15
  character :: str
16
  external len
17
  call len(str)
18
  if(str /= "X") call abort()
19
end subroutine test
20
 
21
PROGRAM VAL
22
 implicit none
23
 external test
24
 intrinsic len
25
 call test()
26
 if(len(" ") /= 1) call abort()
27
END

powered by: WebSVN 2.1.0

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