]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/str-idx.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / str-idx.rs
index 6e48ae20d09f3ab1ebe47f1f91fa81b89bd1db5b..b972a09b5c4908fa9e200d0888fbbb1f64fe33b3 100644 (file)
@@ -10,5 +10,5 @@
 
 pub fn main() {
     let s: &str = "hello";
-    let c: u8 = s[4]; //~ ERROR the trait `core::ops::Index<_>` is not implemented
+    let c: u8 = s[4]; //~ ERROR `str: std::ops::Index<_>` is not satisfied
 }