Next:
Array
Up:
Errors statically detected
Previous:
Operators
Initialization
illegal array initializer for <varname>
incompatible initial value type for <varname> <type1> <> <type2>
when the initialization value does not have a good type.
int i = "1";/*incompatible initial value type, i int <> char* */
array initialization not yet implemented
int tab[2] = {1, 2};
{..} illegal initializer
when using brace list to initialize something else than an array.
int i = {123};
Lionel Fournigault
Wed Apr 30 10:44:37 MET DST 1997