blob: 2ea80494e03cbadb4b0d940edd27f59617804aac [file] [log] [blame]
pub fn main() {
let s: &str = "hello";
let c: u8 = s[4]; //~ ERROR the type `str` cannot be indexed by `{integer}`
}