@@ -9,7 +9,7 @@ Line 1, characters 19-20:
9
9
^
10
10
Error : The constant " 1" has type " int" but an expression was expected of type
11
11
" int32"
12
- Hint : Did you mean " 1l" ?
12
+ Hint : Did you mean " 1l" ?
13
13
| }]
14
14
15
15
let _ : int32 * int32 = 42l , 43 ;;
@@ -19,7 +19,7 @@ Line 1, characters 29-31:
19
19
^^
20
20
Error : The constant " 43" has type " int" but an expression was expected of type
21
21
" int32"
22
- Hint : Did you mean " 43l" ?
22
+ Hint : Did you mean " 43l" ?
23
23
| }]
24
24
25
25
let _ : int32 * nativeint = 42l , 43 ;;
@@ -29,7 +29,7 @@ Line 1, characters 33-35:
29
29
^^
30
30
Error : The constant " 43" has type " int" but an expression was expected of type
31
31
" nativeint"
32
- Hint : Did you mean " 43n" ?
32
+ Hint : Did you mean " 43n" ?
33
33
| }]
34
34
35
35
let _ = min 6L 7 ;;
@@ -39,7 +39,7 @@ Line 1, characters 15-16:
39
39
^
40
40
Error : The constant " 7" has type " int" but an expression was expected of type
41
41
" int64"
42
- Hint : Did you mean " 7L" ?
42
+ Hint : Did you mean " 7L" ?
43
43
| }]
44
44
45
45
let _ : float = 123 ;;
@@ -49,7 +49,7 @@ Line 1, characters 16-19:
49
49
^^^
50
50
Error : The constant " 123" has type " int" but an expression was expected of type
51
51
" float"
52
- Hint : Did you mean " 123." ?
52
+ Hint : Did you mean " 123." ?
53
53
| }]
54
54
55
55
(* no hint *)
@@ -73,7 +73,7 @@ Line 2, characters 4-5:
73
73
^
74
74
Error : This pattern matches values of type " int"
75
75
but a pattern was expected which matches values of type " int32"
76
- Hint : Did you mean " 0l" ?
76
+ Hint : Did you mean " 0l" ?
77
77
| }]
78
78
79
79
let _ : int64 -> int64 = function
@@ -85,7 +85,7 @@ Line 2, characters 9-10:
85
85
^
86
86
Error : This pattern matches values of type " int"
87
87
but a pattern was expected which matches values of type " int64"
88
- Hint : Did you mean " 2L" ?
88
+ Hint : Did you mean " 2L" ?
89
89
| }]
90
90
91
91
(* symmetric *)
@@ -96,7 +96,7 @@ Line 1, characters 16-18:
96
96
^^
97
97
Error : The constant " 1L" has type " int64" but an expression was expected of type
98
98
" int32"
99
- Hint : Did you mean " 1l" ?
99
+ Hint : Did you mean " 1l" ?
100
100
| }]
101
101
let _ : float = 1L ;;
102
102
[%% expect{|
@@ -105,7 +105,7 @@ Line 1, characters 16-18:
105
105
^^
106
106
Error : The constant " 1L" has type " int64" but an expression was expected of type
107
107
" float"
108
- Hint : Did you mean " 1." ?
108
+ Hint : Did you mean " 1." ?
109
109
| }]
110
110
let _ : int64 = 1n ;;
111
111
[%% expect{|
@@ -114,7 +114,7 @@ Line 1, characters 16-18:
114
114
^^
115
115
Error : The constant " 1n" has type " nativeint"
116
116
but an expression was expected of type " int64"
117
- Hint : Did you mean " 1L" ?
117
+ Hint : Did you mean " 1L" ?
118
118
| }]
119
119
let _ : nativeint = 1l ;;
120
120
[%% expect{|
@@ -123,7 +123,7 @@ Line 1, characters 20-22:
123
123
^^
124
124
Error : The constant " 1l" has type " int32" but an expression was expected of type
125
125
" nativeint"
126
- Hint : Did you mean " 1n" ?
126
+ Hint : Did you mean " 1n" ?
127
127
| }]
128
128
129
129
(* not implemented *)
@@ -153,7 +153,7 @@ Line 1, characters 23-28:
153
153
^^^^^
154
154
Error : The constant " 1_000" has type " int" but an expression was expected of type
155
155
" int64"
156
- Hint : Did you mean " 1_000L" ?
156
+ Hint : Did you mean " 1_000L" ?
157
157
| }]
158
158
let _ : nativeint * nativeint = 0n , 0xAA_BBL ;;
159
159
[%% expect{|
@@ -162,7 +162,7 @@ Line 1, characters 36-44:
162
162
^^^^^^^^
163
163
Error : The constant " 0xAA_BBL" has type " int64"
164
164
but an expression was expected of type " nativeint"
165
- Hint : Did you mean " 0xAA_BBn" ?
165
+ Hint : Did you mean " 0xAA_BBn" ?
166
166
| }]
167
167
let _ : int32 -> int32 = function
168
168
| 1l | 0o2_345 -> 3l
@@ -173,7 +173,7 @@ Line 2, characters 9-16:
173
173
^^^^^^^
174
174
Error : This pattern matches values of type " int"
175
175
but a pattern was expected which matches values of type " int32"
176
- Hint : Did you mean " 0o2_345l" ?
176
+ Hint : Did you mean " 0o2_345l" ?
177
177
| }]
178
178
let _ : int32 -> int32 = fun x -> match x with
179
179
| 1l | 0b1000_1101 -> 3l
@@ -184,7 +184,7 @@ Line 2, characters 9-20:
184
184
^^^^^^^^^^^
185
185
Error : This pattern matches values of type " int"
186
186
but a pattern was expected which matches values of type " int32"
187
- Hint : Did you mean " 0b1000_1101l" ?
187
+ Hint : Did you mean " 0b1000_1101l" ?
188
188
| }]
189
189
type t1 = {f1 : int32 };; let _ = fun x -> x.f1 < - 1_000n ;;
190
190
[%% expect{|
@@ -194,5 +194,5 @@ Line 1, characters 49-55:
194
194
^^^^^^
195
195
Error : The constant " 1_000n" has type " nativeint"
196
196
but an expression was expected of type " int32"
197
- Hint : Did you mean " 1_000l" ?
197
+ Hint : Did you mean " 1_000l" ?
198
198
| }]
0 commit comments