1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 ! C815 An entity shall not be explicitly given any attribute more than once in
5 ! R1512 procedure-declaration-stmt ->
6 ! PROCEDURE ( [proc-interface] ) [[, proc-attr-spec]... ::]
8 ! proc-attr-spec values are:
9 ! PUBLIC, PRIVATE, BIND(C), INTENT (intent-spec), OPTIONAL, POINTER,
13 real function procFunc()
17 !WARNING: Attribute 'PUBLIC' cannot be used more than once
18 procedure(procFunc
), public
, pointer, public
:: proc1
19 !WARNING: Attribute 'PRIVATE' cannot be used more than once
20 procedure(procFunc
), private
, pointer, private
:: proc2
21 !WARNING: Attribute 'BIND(C)' cannot be used more than once
22 !ERROR: An interface name with the BIND attribute must appear if the BIND attribute appears in a procedure declaration
23 procedure(procFunc
), bind(c
), pointer, bind(c
) :: proc3
24 !WARNING: Attribute 'PROTECTED' cannot be used more than once
25 procedure(procFunc
), protected
, pointer, protected
:: proc4
26 !ERROR: A PROTECTED entity must be a variable or pointer
30 !ERROR: A PROTECTED entity must be a variable or pointer
33 !ERROR: A PROTECTED entity may not be in a common block
37 logical,protected
,external,pointer :: z
41 subroutine testProcDecl(arg4
, arg5
, arg6
, arg7
, arg8
, arg9
, arg10
, arg11
)
42 !WARNING: Attribute 'INTENT(IN)' cannot be used more than once
43 procedure(procFunc
), intent(in
), pointer, intent(in
) :: arg4
44 !WARNING: Attribute 'INTENT(OUT)' cannot be used more than once
45 procedure(procFunc
), intent(out
), pointer, intent(out
) :: arg5
46 !WARNING: Attribute 'INTENT(INOUT)' cannot be used more than once
47 procedure(procFunc
), intent(inout
), pointer, intent(inout
) :: arg6
48 !ERROR: Attributes 'INTENT(INOUT)' and 'INTENT(OUT)' conflict with each other
49 procedure(procFunc
), intent(inout
), pointer, intent(out
) :: arg7
50 !ERROR: Attributes 'INTENT(INOUT)' and 'INTENT(OUT)' conflict with each other
51 procedure(procFunc
), intent(out
), pointer, intent(inout
) :: arg8
52 !WARNING: Attribute 'OPTIONAL' cannot be used more than once
53 procedure(procFunc
), optional
, pointer, optional
:: arg9
54 !WARNING: Attribute 'POINTER' cannot be used more than once
55 procedure(procFunc
), pointer, optional
, pointer :: arg10
56 !WARNING: Attribute 'SAVE' cannot be used more than once
57 procedure(procFunc
), save, pointer, save :: localProc
58 !ERROR: A PROTECTED entity must be in the specification part of a module
61 end subroutine testProcDecl
66 !Ensure no spurious error from a benign UseError
67 use m
, testProcDecl
=>z