aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/str-idx.rs
blob: 2f39dea9480859abd50fca9106370ac055f6f052 (plain) (blame)
1
2
3
4
5
6
7
fn main() {
  auto s = "hello";
  let u8 c = s.(4);
  log c;
  check (c == u8(0x6f));
}