blob: 935c31bbab98a5797921d9ccc5e781751414dc08 [file] [log] [blame] [view]
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;
}
```