blob: baaa4903a3576ef2d501b01ffb2c736a2cdb2d30 [file] [log] [blame] [view]
#### Note: this error code is no longer emitted by the compiler.
The `typeof` keyword is currently reserved but unimplemented.
Erroneous code example:
```compile_fail,E0516
fn main() {
let x: typeof(92) = 92;
}
```
Try using type inference instead. Example:
```
fn main() {
let x = 92;
}
```