Compiler Error Messages

FreeBASIC

Compiler Error Messages
 
During the program compilation three types of errors can arise:

Compiler Warnings:
The warnings don't stop the compilation, just alert the user some non-recommended and error-prone operation is attempted in the code.
Sometimes one of these operations is coded deliberately to achieve a result, in this case the warnings can be disabled by setting the -w 1 option at the command line.

  • 1 Passing scalar as pointer
  • 2 Passing pointer to scalar
  • 3 Passing different pointer types
  • 4 Suspicious pointer assignment
  • 5 Implicit conversion
  • 6 Cannot export symbol without -export option
  • 7 Identifier's name too big, truncated
  • 8 Literal number too big, truncated
  • 9 Literal string too big, truncated
  • 10 UDT with pointer or var-len string fields
  • 11 Implicit variable allocation
  • 12 Missing closing quote in literal string
  • 13 Function result was not explicitly set
  • 14 Branch crossing local variable definition
  • 15 No explicit BYREF or BYVAL
  • 16 Possible escape sequence found in
  • 17 The type length is too large, consider passing BYREF
  • 18 The length of the parameters list is too large, consider passing UDT's BYREF
  • 19 The ANY initializer has no effect on UDT's with default constructors
  • 20 Object files or libraries with mixed multithreading (-mt) options
  • 21 Object files or libraries with mixed language (-lang) options
  • 22 Deleting ANY pointers is undefined
  • 23 Array too large for stack, consider making it var-len or SHARED
  • 24 Variable too large for stack, consider making it SHARED
  • 25 Overflow in constant conversion
  • 26 Variable following NEXT is meaningless
  • 27 Cast to non-pointer
  • 28 Return method mismatch
  • 29 Passing Pointer
  • 30 Command line option overrides directive
  • 31 Directive ignored after first pass
  • 32 'IF' statement found directly after multi-line 'ELSE'
  • 33 Shift value greater than or equal to number of bits in data type
  • 34 '=' parsed as equality operator in function argument, not assignment to BYREF function result
  • 35 Mixing signed/unsigned operands
  • 36 Mismatching parameter initializer
  • 37
  • 38 Mixing operand data types may have undefined results
  • 39 Redefinition of intrinsic

Compiler Error messages:
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.

  • 1 Argument count mismatch
  • 2 Expected End-of-File
  • 3 Expected End-of-Line
  • 4 Duplicated definition
  • 5 Expected 'AS'
  • 6 Expected '('
  • 7 Expected ')'
  • 8 Undefined symbol
  • 9 Expected expression
  • 10 Expected '='
  • 11 Expected constant
  • 12 Expected 'TO'
  • 13 Expected 'NEXT'
  • 14 Expected identifier
  • 15 Expected '-'
  • 16 Expected ','
  • 17 Syntax error
  • 18 Element not defined
  • 19 Expected 'END TYPE' or 'END UNION'
  • 20 Type mismatch
  • 21 Internal!
  • 22 Parameter type mismatch
  • 23 File not found
  • 24 Invalid data types
  • 25 Invalid character
  • 26 File access error
  • 27 Recursion level too deep
  • 28 Expected pointer
  • 29 Expected 'LOOP'
  • 30 Expected 'WEND'
  • 31 Expected 'THEN'
  • 32 Expected 'END IF'
  • 33 Illegal 'END'
  • 34 Expected 'CASE'
  • 35 Expected 'END SELECT'
  • 36 Wrong number of dimensions
  • 37 Array boundaries do not match the original EXTERN declaration
  • 38 'SUB' or 'FUNCTION' without 'END SUB' or 'END FUNCTION'
  • 39 Expected 'END SUB' or 'END FUNCTION'
  • 40 Illegal parameter specification
  • 41 Variable not declared
  • 42 Variable required
  • 43 Illegal outside a compound statement
  • 44 Expected 'END ASM'
  • 45 Function not declared
  • 46 Expected ';'
  • 47 Undefined label
  • 48 Too many array dimensions
  • 49 Array too big
  • 50 User Defined Type too big
  • 51 Expected scalar counter
  • 52 Illegal outside a CONSTRUCTOR, DESTRUCTOR, FUNCTION, OPERATOR, PROPERTY or SUB block
  • 53 Expected var-len array
  • 54 Fixed-len strings cannot be returned from functions
  • 55 Array already dimensioned
  • 56 Illegal without the -ex option
  • 57 Type mismatch
  • 58 Illegal specification
  • 59 Expected 'END WITH'
  • 60 Illegal inside functions
  • 61 Statement in between SELECT and first CASE
  • 62 Expected array
  • 63 Expected '{'
  • 64 Expected '}'
  • 65 Expected ']'
  • 66 Too many expressions
  • 67 Expected explicit result type
  • 68 Range too large
  • 69 Forward references not allowed
  • 70 Incomplete type
  • 71 Array not dimensioned
  • 72 Array access, index expected
  • 73 Expected 'END ENUM'
  • 74 Var-len arrays cannot be initialized
  • 75 '...' ellipsis upper bound given for dynamic array (this is not supported)
  • 76 '...' ellipsis upper bound given for array field (this is not supported)
  • 77 Invalid bitfield
  • 78 Too many parameters
  • 79 Macro text too long
  • 80 Invalid command-line option
  • 81 Selected non-x86 CPU when compiling for DOS
  • 82 Selected -gen gas ASM backend for non-x86 CPU
  • 83 -asm att used for -gen gas, but -gen gas only supports -asm intel
  • 84 -pic used when making executable (only works when making a shared library)
  • 85 -pic used, but not supported by target system (only works for non-x86 Unixes)
  • 86 Var-len strings cannot be initialized
  • 87 Recursive TYPE or UNION not allowed
  • 88 Recursive DEFINE not allowed
  • 89 Identifier cannot include periods
  • 90 Executable not found
  • 91 Array out-of-bounds
  • 92 Missing command-line option for
  • 93 Expected 'ANY'
  • 94 Expected 'END SCOPE'
  • 95 Illegal inside a compound statement or scoped block
  • 96 UDT function results cannot be passed by reference
  • 97 Ambiguous call to overloaded function
  • 98 No matching overloaded function
  • 99 Division by zero
  • 100 Cannot pop stack, underflow
  • 101 UDT's containing var-len string fields cannot be initialized
  • 102 Branching to scope block containing local variables
  • 103 Branching to other functions or to module-level
  • 104 Branch crossing local array, var-len string or object definition
  • 105 LOOP without DO
  • 106 NEXT without FOR
  • 107 WEND without WHILE
  • 108 END WITH without WITH
  • 109 END IF without IF
  • 110 END SELECT without SELECT
  • 111 END SUB or FUNCTION without SUB or FUNCTION
  • 112 END SCOPE without SCOPE
  • 113 END NAMESPACE without NAMESPACE
  • 114 END EXTERN without EXTERN
  • 115 ELSEIF without IF
  • 116 ELSE without IF
  • 117 CASE without SELECT
  • 118 Cannot modify a constant
  • 119 Expected period ('.')
  • 120 Expected 'END NAMESPACE'
  • 121 Illegal inside a NAMESPACE block
  • 122 Symbols defined inside namespaces cannot be removed
  • 123 Expected 'END EXTERN'
  • 124 Expected 'END SUB'
  • 125 Expected 'END FUNCTION'
  • 126 Expected 'END CONSTRUCTOR'
  • 127 Expected 'END DESTRUCTOR'
  • 128 Expected 'END OPERATOR'
  • 129 Expected 'END PROPERTY'
  • 130 Declaration outside the original namespace
  • 131 No end of multi-line comment, expected "'/"
  • 132 Too many errors, exiting
  • 133 Expected 'ENDMACRO'
  • 134 EXTERN or COMMON variables cannot be initialized
  • 135 EXTERN or COMMON dynamic arrays cannot have initial bounds
  • 136 At least one parameter must be a user-defined type
  • 137 Parameter or result must be a user-defined type
  • 138 Both parameters can't be of the same type
  • 139 Parameter and result can't be of the same type
  • 140 Invalid result type for this operator
  • 141 Invalid parameter type, it must be the same as the parent TYPE/CLASS
  • 142 Vararg parameters are not allowed in overloaded functions
  • 143 Illegal outside an OPERATOR block
  • 144 Parameter cannot be optional
  • 145 Only valid in -lang
  • 146 Default types or suffixes are only valid in -lang
  • 147 Suffixes are only valid in -lang
  • 148 Implicit variables are only valid in -lang
  • 149 Auto variables are only valid in -lang
  • 150 Invalid array index
  • 151 Operator must be a member function
  • 152 Operator cannot be a member function
  • 153 Method declared in anonymous UDT
  • 154 Constant declared in anonymous UDT
  • 155 Static variable declared in anonymous UDT
  • 156 Expected operator
  • 157 Declaration outside the original namespace or class
  • 158 A destructor should not have any parameters
  • 159 Expected class or UDT identifier
  • 160 Var-len strings cannot be part of UNION's or nested TYPE's
  • 161 Dynamic arrays cannot be part of UNION's or nested TYPE's
  • 162 Fields with constructors cannot be part of UNION's or nested TYPE's
  • 163 Fields with destructors cannot be part of UNION's or nested TYPE's
  • 164 Illegal outside a CONSTRUCTOR block
  • 165 Illegal outside a DESTRUCTOR block
  • 166 UDT's with methods must have unique names
  • 167 Parent is not a class or UDT
  • 168 CONSTRUCTOR() chain call not at top of constructor
  • 169 BASE() initializer not at top of constructor
  • 170 REDIM on UDT with non-CDECL constructor
  • 171 REDIM on UDT with non-CDECL destructor
  • 172 REDIM on UDT with non-parameterless default constructor
  • 173 ERASE on UDT with non-CDECL constructor
  • 174 ERASE on UDT with non-CDECL destructor
  • 175 ERASE on UDT with non-parameterless default constructor
  • 176 This symbol cannot be undefined
  • 177 RETURN mixed with 'FUNCTION =' or EXIT FUNCTION (using both styles together is unsupported when returning objects with constructors)
  • 178 'FUNCTION =' or EXIT FUNCTION mixed with RETURN (using both styles together is unsupported when returning objects with constructors)
  • 179 Missing RETURN to copy-construct function result
  • 180 Invalid assignment/conversion
  • 181 Invalid array subscript
  • 182 TYPE or CLASS has no default constructor
  • 183 Function result TYPE has no default constructor
  • 184 Missing BASE() initializer (base UDT without default constructor requires manual initialization)
  • 185 Missing default constructor implementation (base UDT without default constructor requires manual initialization)
  • 186 Missing UDT.constructor(byref as UDT) implementation (base UDT without default constructor requires manual initialization)
  • 187 Missing UDT.constructor(byref as const UDT) implementation (base UDT without default constructor requires manual initialization)
  • 188 Invalid priority attribute
  • 189 PROPERTY GET should have no parameter, or just one if indexed
  • 190 PROPERTY SET should have one parameter, or just two if indexed
  • 191 Expected 'PROPERTY'
  • 192 Illegal outside a PROPERTY block
  • 193 PROPERTY has no GET method/accessor
  • 194 PROPERTY has no SET method/accessor
  • 195 PROPERTY has no indexed GET method/accessor
  • 196 PROPERTY has no indexed SET method/accessor
  • 197 Missing overloaded operator:
  • 198 The NEW[] operator does not allow explicit calls to constructors
  • 199 The NEW[] operator only supports the { ANY } initialization
  • 200 The NEW operator cannot be used with fixed-length strings
  • 201 Illegal member access
  • 202 Expected ':'
  • 203 The default constructor has no public access
  • 204 Constructor has no public access
  • 205 Destructor has no public access
  • 206 Accessing base UDT's private default constructor
  • 207 Accessing base UDT's private destructor
  • 208 Illegal non-static member access
  • 209 Constructor declared ABSTRACT
  • 210 Constructor declared VIRTUAL
  • 211 Destructor declared ABSTRACT
  • 212 Member cannot be static
  • 213 Member isn't static
  • 214 Only static members can be accessed from static functions
  • 215 The PRIVATE and PUBLIC attributes are not allowed with REDIM, COMMON or EXTERN
  • 216 STATIC used here, but not the in the DECLARE statement
  • 217 CONST used here, but not the in the DECLARE statement
  • 218 VIRTUAL used here, but not the in the DECLARE statement
  • 219 ABSTRACT used here, but not the in the DECLARE statement
  • 220 Method declared VIRTUAL, but UDT does not extend OBJECT
  • 221 Method declared ABSTRACT, but UDT does not extend OBJECT
  • 222 Not overriding any virtual method
  • 223 Implemented body for an ABSTRACT method
  • 224 Override has different return type than overridden method
  • 225 Override has different calling convention than overridden method
  • 226 Implicit destructor override would have different calling convention
  • 227 Implicit LET operator override would have different calling convention
  • 228 Override is not a CONST member like the overridden method
  • 229 Override is a CONST member, but the overridden method is not
  • 230 Override has different parameters than overridden method
  • 231 This operator cannot be STATIC
  • 232 This operator is implicitly STATIC and cannot be VIRTUAL or ABSTRACT
  • 233 This operator is implicitly STATIC and cannot be CONST
  • 234 Parameter must be an integer
  • 235 Parameter must be a pointer
  • 236 Expected initializer
  • 237 Fields cannot be named as keywords in TYPE's that contain member functions or in CLASS'es
  • 238 Illegal outside a FOR compound statement
  • 239 Illegal outside a DO compound statement
  • 240 Illegal outside a WHILE compound statement
  • 241 Illegal outside a SELECT compound statement
  • 242 Expected 'FOR'
  • 243 Expected 'DO'
  • 244 Expected 'WHILE'
  • 245 Expected 'SELECT'
  • 246 No outer FOR compound statement found
  • 247 No outer DO compound statement found
  • 248 No outer WHILE compound statement found
  • 249 No outer SELECT compound statement found
  • 250 Expected 'CONSTRUCTOR', 'DESTRUCTOR', 'DO', 'FOR', 'FUNCTION', 'OPERATOR', 'PROPERTY', 'SELECT', 'SUB' or 'WHILE'
  • 251 Expected 'DO', 'FOR' or 'WHILE'
  • 252 Illegal outside a SUB block
  • 253 Illegal outside a FUNCTION block
  • 254 Ambiguous symbol access, explicit scope resolution required
  • 255 An ENUM, TYPE or UNION cannot be empty
  • 256 ENUM's declared inside EXTERN .. END EXTERN blocks don't open new scopes
  • 257 STATIC used on non-member procedure
  • 258 CONST used on non-member procedure
  • 259 ABSTRACT used on non-member procedure
  • 260 VIRTUAL used on non-member procedure
  • 261 Invalid initializer
  • 262 Objects with default [con|de]structors or methods are only allowed in the module level
  • 263 Static member variable in nested UDT (only allowed in toplevel UDTs)
  • 264 Symbol not a CLASS, ENUM, TYPE or UNION type
  • 265 Too many elements
  • 266 Only data members supported
  • 267 UNIONs are not allowed
  • 268 Arrays are not allowed
  • 269 COMMON variables cannot be object instances of CLASS/TYPE's with cons/destructors
  • 270 Cloning operators (LET, Copy constructors) can't take a byval arg of the parent's type
  • 271 Local symbols can't be referenced
  • 272 Expected 'PTR' or 'POINTER'
  • 273 Too many levels of pointer indirection
  • 274 Dynamic arrays can't be const
  • 275 Const UDT cannot invoke non-const method
  • 276 Elements must be empty for strings and arrays
  • 277 GOSUB disabled, use 'OPTION GOSUB' to enable
  • 278 Invalid -lang
  • 279 Can't use ANY as initializer in array with ellipsis bound
  • 280 Must have initializer with array with ellipsis bound
  • 281 Can't use ... as lower bound
  • 282 FOR/NEXT variable name mismatch
  • 283 Selected option requires an SSE FPU mode
  • 284 Expected relational operator ( =, >, <, <>, <=, >= )
  • 285 Unsupported statement in -gen gcc mode
  • 286 Too many labels
  • 287 Unsupported function
  • 288 Expected sub
  • 289 Expected '#ENDIF'
  • 290 Resource file given for target system that does not support them
  • 291 -o <file> option without corresponding input file
  • 292 Not extending a TYPE/UNION (a TYPE/UNION can only extend other TYPEs/UNIONs)
  • 293 Illegal outside a CLASS, TYPE or UNION method
  • 294 CLASS, TYPE or UNION not derived
  • 295 CLASS, TYPE or UNION has no constructor
  • 296 Symbol type has no Run-Time Type Info (RTTI)
  • 297 Types have no hierarchical relation
  • 298 Expected a CLASS, TYPE or UNION symbol type
  • 299 Casting derived UDT pointer from incompatible pointer type
  • 300 Casting derived UDT pointer from unrelated UDT pointer type
  • 301 Casting derived UDT pointer to incompatible pointer type
  • 302 Casting derived UDT pointer to unrelated UDT pointer type
  • 303 ALIAS name string is empty
  • 304 LIB name string is empty
  • 305 UDT has unimplemented abstract methods
  • 306 Non-virtual call to ABSTRACT method
  • 307 #ASSERT condition failed
  • 308 Expected '>'
  • 309 Invalid size
  • 310 ALIAS name here is different from ALIAS given in DECLARE prototype
  • 311 vararg parameters are only allowed in CDECL procedures
  • 312 the first parameter in a procedure may not be vararg
  • 313 CONST used on constructor (not needed)
  • 314 CONST used on destructor (not needed)
  • 315 Byref function result not set
  • 316 Function result assignment outside of the function
  • 317 Type mismatch in byref function result assignment
  • 318 -asm att|intel option given, but not supported for this target (only x86 or x86_64)
  • 319 Reference not initialized
  • 320 Incompatible reference initializer
  • 321 Array of references - not supported yet
  • 322 Invalid CASE range, start value is greater than the end value
  • 323 Fixed-length string combined with BYREF (not supported)

Third party programs errors
These errors occur after the source has been compiled into assembler, they come from the auxiliary programs FB requires to compile a source into an executable: the linker, the assembler and (for Windows programs) the resource compiler.

If an IDE or a make utility are been used, additional errors can arise. These errors are outside the scope of this help.