summaryrefslogtreecommitdiffstats
path: root/tests/ui/destructure-trait-ref.stderr
blob: 18a889837dfdb6852c7da225426dbd3cb1033acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
error[E0033]: type `&dyn T` cannot be dereferenced
  --> $DIR/destructure-trait-ref.rs:26:9
   |
LL |     let &x = &1isize as &dyn T;
   |         ^^ type `&dyn T` cannot be dereferenced

error[E0033]: type `&dyn T` cannot be dereferenced
  --> $DIR/destructure-trait-ref.rs:27:10
   |
LL |     let &&x = &(&1isize as &dyn T);
   |          ^^ type `&dyn T` cannot be dereferenced

error[E0033]: type `Box<dyn T>` cannot be dereferenced
  --> $DIR/destructure-trait-ref.rs:28:9
   |
LL |     let box x = Box::new(1isize) as Box<dyn T>;
   |         ^^^^^ type `Box<dyn T>` cannot be dereferenced

error[E0308]: mismatched types
  --> $DIR/destructure-trait-ref.rs:32:10
   |
LL |     let &&x = &1isize as &dyn T;
   |          ^^   ----------------- this expression has type `&dyn T`
   |          |
   |          expected trait object `dyn T`, found reference
   |
   = note: expected trait object `dyn T`
                 found reference `&_`
help: consider removing `&` from the pattern
   |
LL -     let &&x = &1isize as &dyn T;
LL +     let &x = &1isize as &dyn T;
   |

error[E0308]: mismatched types
  --> $DIR/destructure-trait-ref.rs:36:11
   |
LL |     let &&&x = &(&1isize as &dyn T);
   |           ^^   -------------------- this expression has type `&&dyn T`
   |           |
   |           expected trait object `dyn T`, found reference
   |
   = note: expected trait object `dyn T`
                 found reference `&_`
help: consider removing `&` from the pattern
   |
LL -     let &&&x = &(&1isize as &dyn T);
LL +     let &&x = &(&1isize as &dyn T);
   |

error[E0308]: mismatched types
  --> $DIR/destructure-trait-ref.rs:40:13
   |
LL |     let box box x = Box::new(1isize) as Box<dyn T>;
   |             ^^^^^   ------------------------------ this expression has type `Box<dyn T>`
   |             |
   |             expected trait object `dyn T`, found struct `Box`
   |
   = note: expected trait object `dyn T`
                    found struct `Box<_>`

error: aborting due to 6 previous errors

Some errors have detailed explanations: E0033, E0308.
For more information about an error, try `rustc --explain E0033`.