error: cannot index a value of type '*i64' — use a many-pointer '[*]T', or dereference first --> examples/diagnostics/1203-diagnostics-index-non-indexable.sx:23:19 | 23 | print("{}\n", p[0]); // error: '*i64' is not indexable (hint form) | ^ error: cannot index a value of type 'S' --> examples/diagnostics/1203-diagnostics-index-non-indexable.sx:26:19 | 26 | print("{}\n", s[0]); // error: 'S' is not indexable (bare form) | ^