]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41742.rs
Rollup merge of #55247 - peterjoel:peterjoel-prim-char-doc-example, r=joshtriplett
[rust.git] / src / test / ui / issues / issue-41742.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::ops::{Index, IndexMut};
12
13 struct S;
14 struct H;
15
16 impl S {
17     fn f(&mut self) {}
18 }
19
20 impl Index<u32> for H {
21     type Output = S;
22     fn index(&self, index: u32) -> &S {
23         unimplemented!()
24     }
25 }
26
27 impl IndexMut<u32> for H {
28     fn index_mut(&mut self, index: u32) -> &mut S {
29         unimplemented!()
30     }
31 }
32
33 fn main() {
34     H["?"].f(); //~ ERROR mismatched types
35 }