Error code E0516
Note: this error code is no longer emitted by the compiler.
The typeof keyword is currently reserved but unimplemented.
Erroneous code example:
fn main() {
let x: typeof(92) = 92;
}
Try using type inference instead. Example:
fn main() {
let x = 92;
}