]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/dst-index.rs
rollup merge of #20642: michaelwoerister/sane-source-locations-pt1
[rust.git] / src / test / compile-fail / dst-index.rs
1 // Copyright 2014 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 // Test that overloaded index expressions with DST result types
12 // can't be used as rvalues
13
14 use std::ops::Index;
15 use std::fmt::Debug;
16
17 struct S;
18
19 impl Copy for S {}
20
21 impl Index<usize> for S {
22     type Output = str;
23
24     fn index<'a>(&'a self, _: &usize) -> &'a str {
25         "hello"
26     }
27 }
28
29 struct T;
30
31 impl Copy for T {}
32
33 impl Index<usize> for T {
34     type Output = Debug + 'static;
35
36     fn index<'a>(&'a self, idx: &usize) -> &'a (Debug + 'static) {
37         static x: usize = 42;
38         &x
39     }
40 }
41
42 fn main() {
43     S[0];
44     //~^ ERROR cannot move out of indexed content
45     //~^^ ERROR E0161
46     T[0];
47     //~^ ERROR cannot move out of indexed content
48     //~^^ ERROR E0161
49 }