The typeof keyword is currently reserved but unimplemented.
typeof
Erroneous code example:
fn main() { let x: typeof(92) = 92; }
Try using type inference instead. Example:
fn main() { let x = 92; }
Back to list of error codes