2 ! { dg-options "-std=legacy" }
3 ! Tests the fix for PR27122, in which the requirements of 12.3.2.1.1
4 ! for defined operators were not enforced.
6 ! Based on PR test by Thomas Koenig <tkoenig@gcc.gnu.org>
9 interface operator (.foo
.)
10 module procedure foo_0
11 module procedure foo_1
12 module procedure foo_2
13 module procedure foo_3
14 module procedure foo_1_OK
15 module procedure foo_2_OK
16 function foo_chr (chr
) ! { dg-error "cannot be assumed character length" }
17 character(*) :: foo_chr
18 character(*), intent(in
) :: chr
25 ! Mixing FUNCTIONs and SUBROUTINEs in an INTERFACE hides the
26 ! errors that should be tested here. Hence split out subroutine
29 interface operator (.bar
.)
30 subroutine bad_foo (chr
) ! { dg-error "must be a FUNCTION" }
31 character(*), intent(in
) :: chr
32 end subroutine bad_foo
36 function foo_0 () ! { dg-error "must have at least one argument" }
40 function foo_1 (a
) ! { dg-error "Ambiguous interfaces" }
42 integer, intent(in
) :: a
45 function foo_1_OK (a
) ! { dg-error "Ambiguous interfaces" }
47 integer, intent (in
) :: a
50 function foo_2 (a
, b
) ! { dg-error "cannot be optional" }
52 integer, intent(in
) :: a
53 integer, intent(in
), optional
:: b
56 function foo_2_OK (a
, b
)
60 foo_2_OK
= 2.0 * a
+ b
62 function foo_3 (a
, b
, c
) ! { dg-error "must have, at most, two arguments" }
64 integer, intent(in
) :: a
, b
, c