File: resolve81.f90

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (64 lines) | stat: -rw-r--r-- 3,105 bytes parent folder | download | duplicates (2)
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
63
64
! RUN: %S/test_errors.sh %s %t %f18
! C801 The same attr-spec shall not appear more than once in a given
! type-declaration-stmt.
!
! R801 type-declaration-stmt ->
!        declaration-type-spec [[, attr-spec]... ::] entity-decl-list
!  attr-spec values are:
!    PUBLIC, PRIVATE, ALLOCATABLE, ASYNCHRONOUS, CODIMENSION, CONTIGUOUS, 
!    DIMENSION (array-spec), EXTERNAL, INTENT (intent-spec), INTRINSIC, 
!    BIND(C), OPTIONAL, PARAMETER, POINTER, PROTECTED, SAVE, TARGET, VALUE, 
!    VOLATILE
module m

  !WARNING: Attribute 'PUBLIC' cannot be used more than once
  real, public, allocatable, public :: publicVar
  !WARNING: Attribute 'PRIVATE' cannot be used more than once
  real, private, allocatable, private :: privateVar
  !WARNING: Attribute 'ALLOCATABLE' cannot be used more than once
  real, allocatable, allocatable :: allocVar
  !WARNING: Attribute 'ASYNCHRONOUS' cannot be used more than once
  real, asynchronous, public, asynchronous :: asynchVar
  !ERROR: Attribute 'CODIMENSION' cannot be used more than once
  real, codimension[*], codimension[*] :: codimensionVar
  !WARNING: Attribute 'CONTIGUOUS' cannot be used more than once
  real, contiguous, pointer, contiguous :: contigVar(:)
  !ERROR: Attribute 'DIMENSION' cannot be used more than once
  real, dimension(5), dimension(5) :: arrayVar
  !WARNING: Attribute 'EXTERNAL' cannot be used more than once
  real, external, external :: externFunc
  !WARNING: Attribute 'INTRINSIC' cannot be used more than once
  real, intrinsic, bind(c), intrinsic :: cos
  !WARNING: Attribute 'BIND(C)' cannot be used more than once
  integer, bind(c), volatile, bind(c) :: bindVar
  !WARNING: Attribute 'PARAMETER' cannot be used more than once
  real, parameter, parameter :: realConst = 4.3
  !WARNING: Attribute 'POINTER' cannot be used more than once
  real, pointer, pointer :: realPtr
  !WARNING: Attribute 'PROTECTED' cannot be used more than once
  real, protected, protected :: realProt
  !WARNING: Attribute 'SAVE' cannot be used more than once
  real, save, save :: saveVar
  !WARNING: Attribute 'TARGET' cannot be used more than once
  real, target, target :: targetVar
  !WARNING: Attribute 'VOLATILE' cannot be used more than once
  real, volatile, volatile :: volatileVar

contains
    subroutine testTypeDecl(arg1, arg2, arg3, arg4, arg5, arg6)
      !WARNING: Attribute 'INTENT(IN)' cannot be used more than once
      real, intent(in), intent(in) :: arg1
      !WARNING: Attribute 'INTENT(OUT)' cannot be used more than once
      real, intent(out), intent(out) :: arg2
      !WARNING: Attribute 'INTENT(INOUT)' cannot be used more than once
      real, intent(inout), intent(inout) :: arg3
      !WARNING: Attribute 'OPTIONAL' cannot be used more than once
      integer, optional, intent(in), optional :: arg4
      !WARNING: Attribute 'VALUE' cannot be used more than once
      integer, value, intent(in), value :: arg5
      !ERROR: Attributes 'INTENT(IN)' and 'INTENT(INOUT)' conflict with each other
      integer, intent(in), pointer, intent(inout) :: arg6

      arg2 =3.5
    end subroutine testTypeDecl
end module m