Lines Matching full:kind
4 ! C714 The value of kind-param shall be nonnegative.
5 ! C715 The value of kind-param shall specify a representation method that
11 ! C727 The value of kind-param shall specify a representation method that
13 ! C728 The value of kind-param shall specify a representation method that
16 !ERROR: INTEGER(KIND=0) is not a supported type
17 integer(kind=0) :: j0
18 !ERROR: INTEGER(KIND=-1) is not a supported type
19 integer(kind=-1) :: jm1
20 !ERROR: INTEGER(KIND=3) is not a supported type
21 integer(kind=3) :: j3
22 !ERROR: INTEGER(KIND=32) is not a supported type
23 integer(kind=32) :: j32
24 !ERROR: REAL(KIND=0) is not a supported type
25 real(kind=0) :: a0
26 !ERROR: REAL(KIND=-1) is not a supported type
27 real(kind=-1) :: am1
28 !ERROR: REAL(KIND=1) is not a supported type
29 real(kind=1) :: a1
30 !ERROR: REAL(KIND=7) is not a supported type
31 real(kind=7) :: a7
32 !ERROR: REAL(KIND=32) is not a supported type
33 real(kind=32) :: a32
34 !ERROR: COMPLEX(KIND=0) is not a supported type
35 complex(kind=0) :: z0
36 !ERROR: COMPLEX(KIND=-1) is not a supported type
37 complex(kind=-1) :: zm1
38 !ERROR: COMPLEX(KIND=1) is not a supported type
39 complex(kind=1) :: z1
40 !ERROR: COMPLEX(KIND=7) is not a supported type
41 complex(kind=7) :: z7
42 !ERROR: COMPLEX(KIND=32) is not a supported type
43 complex(kind=32) :: z32
50 !ERROR: LOGICAL(KIND=0) is not a supported type
51 logical(kind=0) :: l0
52 !ERROR: LOGICAL(KIND=-1) is not a supported type
53 logical(kind=-1) :: lm1
54 !ERROR: LOGICAL(KIND=3) is not a supported type
55 logical(kind=3) :: l3
56 !ERROR: LOGICAL(KIND=16) is not a supported type
57 logical(kind=16) :: l16
59 !ERROR: unsupported LOGICAL(KIND=0)
63 !ERROR: unsupported LOGICAL(KIND=3)
66 !ERROR: unsupported LOGICAL(KIND=5)
68 !ERROR: unsupported LOGICAL(KIND=-1)
70 character (len=99, kind=1) :: cvar1
71 character (len=99, kind=2) :: cvar2
74 !ERROR: KIND value (3) not valid for CHARACTER
75 character (len=99, kind=3) :: cvar5
76 !ERROR: KIND value (-1) not valid for CHARACTER
77 character (len=99, kind=-1) :: cvar6
80 !ERROR: CHARACTER(KIND=3) is not a supported type
83 !ERROR: CHARACTER(KIND=8) is not a supported type
85 !ERROR: Unsupported type kind value (5000000000)
91 !ERROR: KIND value (8) not valid for CHARACTER