| 1 | vlib/v/checker/tests/import_sym_builtin_override_err.vv:3:12: error: unknown type `rand.f64`. |
| 2 | Did you mean `rand.PRNG`? |
| 3 | 1 | import rand { f64 } |
| 4 | 2 | |
| 5 | 3 | type Dot = [3]f64 |
| 6 | | ~~~~~~ |
| 7 | vlib/v/checker/tests/import_sym_builtin_override_err.vv:1:15: error: cannot import or override builtin type |
| 8 | 1 | import rand { f64 } |
| 9 | | ~~~ |
| 10 | 2 | |
| 11 | 3 | type Dot = [3]f64 |
| 12 |