You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/manual/cache/CompilerErrMsg.wakka
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,8 +50,10 @@ During the program compilation three types of errors can arise:
50
50
- //43(0) Argument count mismatch//
51
51
- //44(1) Suffix ignored//
52
52
- //45(1) FOR counter variable is unable to exceed limit value//
53
-
- //46(0) #cmdline ignored//
53
+
- //46(1) #cmdline ignored//
54
54
- //47(1) Use of reserved global or backend symbol//
55
+
- //48(1) Expected digit//
56
+
- //49(1) Up-casting discards initializer(s)//
55
57
56
58
==Compiler Error messages:==
57
59
The error messages stop the compilation after 10 errors (see the -maxerr command-line option to change that default value) or a fatal error occurred, and require a correction by the user before the compilation can be continued. The compiler signals the lines where the errors have been found, so the correction can be done quickly. In a few cases the place pointed at by the error messages is not where the errors can be found, it's the place where the compiler has given up in waiting for something that should be somewhere.
@@ -270,7 +272,7 @@ During the program compilation three types of errors can arise:
270
272
- //212 Destructor declared ABSTRACT//
271
273
- //213 Member cannot be static//
272
274
- //214 Member isn't static//
273
-
- //215 Only static members can be accessed from static functions//
275
+
- //215 Only static members can be accessed from static functions and parameter initializers//
274
276
- //216 The PRIVATE and PUBLIC attributes are not allowed with REDIM, COMMON or EXTERN//
275
277
- //217 STATIC used here, but not the in the DECLARE statement//
276
278
- //218 CONST used here, but not the in the DECLARE statement//
@@ -381,6 +383,9 @@ During the program compilation three types of errors can arise:
381
383
- //323 Invalid CASE range, start value is greater than the end value//
382
384
- //324 Fixed-length string combined with BYREF (not supported)//
0 commit comments