File: resolve96.f90

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (62 lines) | stat: -rw-r--r-- 1,912 bytes parent folder | download | duplicates (18)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
! RUN: %python %S/test_errors.py %s %flang_fc1

! Check distinguishability for specific procedures of defined operators and
! assignment. These are different from names because there a normal generic
! is invoked the same way as a type-bound generic.
! E.g. for a generic name like 'foo', the generic name is invoked as 'foo(x, y)'
! while the type-bound generic is invoked as 'x%foo(y)'.
! But for 'operator(.foo.)', it is 'x .foo. y' in either case.
! So to check the specifics of 'operator(.foo.)' we have to consider all
! definitions of it visible in the current scope.

! One operator(.foo.) comes from interface-stmt, the other is type-bound.
module m1
  type :: t1
  contains
    procedure, pass :: p => s1
    generic :: operator(.foo.) => p
  end type
  type :: t2
  end type
  !ERROR: Generic 'OPERATOR(.foo.)' may not have specific procedures 's2' and 't1%p' as their interfaces are not distinguishable
  interface operator(.foo.)
    procedure :: s2
  end interface
contains
  integer function s1(x1, x2)
    class(t1), intent(in) :: x1
    class(t2), intent(in) :: x2
  end
  integer function s2(x1, x2)
    class(t1), intent(in) :: x1
    class(t2), intent(in) :: x2
  end
end module

! assignment(=) as type-bound generic in each type
module m2
  type :: t1
    integer :: n
  contains
    procedure, pass(x1) :: p1 => s1
    !ERROR: Generic 'assignment(=)' may not have specific procedures 't1%p1' and 't2%p2' as their interfaces are not distinguishable
    generic :: assignment(=) => p1
  end type
  type :: t2
    integer :: n
  contains
    procedure, pass(x2) :: p2 => s2
    generic :: assignment(=) => p2
  end type
contains
  subroutine s1(x1, x2)
    class(t1), intent(out) :: x1
    class(t2), intent(in) :: x2
    x1%n = x2%n + 1
  end subroutine
  subroutine s2(x1, x2)
    class(t1), intent(out) :: x1
    class(t2), intent(in) :: x2
    x1%n = x2%n + 2
  end subroutine
end module