summary refs log tree commit diff
path: root/src/test/ui/range/issue-54505-no-std.stderr
blob: 73507f4836b23ade84fff3cc55f3edc206ec4156 (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
66
67
68
69
70
71
72
73
74
75
76
77
error: `#[panic_handler]` function required, but not found

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:27:16
   |
LL |     take_range(0..1);
   |                ^^^^
   |                |
   |                expected reference, found struct `Range`
   |                help: consider borrowing here: `&(0..1)`
   |
   = note: expected reference `&_`
                 found struct `Range<{integer}>`

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:32:16
   |
LL |     take_range(1..);
   |                ^^^
   |                |
   |                expected reference, found struct `RangeFrom`
   |                help: consider borrowing here: `&(1..)`
   |
   = note: expected reference `&_`
                 found struct `RangeFrom<{integer}>`

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:37:16
   |
LL |     take_range(..);
   |                ^^
   |                |
   |                expected reference, found struct `RangeFull`
   |                help: consider borrowing here: `&(..)`
   |
   = note: expected reference `&_`
                 found struct `RangeFull`

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:42:16
   |
LL |     take_range(0..=1);
   |                ^^^^^
   |                |
   |                expected reference, found struct `RangeInclusive`
   |                help: consider borrowing here: `&(0..=1)`
   |
   = note: expected reference `&_`
                 found struct `RangeInclusive<{integer}>`

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:47:16
   |
LL |     take_range(..5);
   |                ^^^
   |                |
   |                expected reference, found struct `RangeTo`
   |                help: consider borrowing here: `&(..5)`
   |
   = note: expected reference `&_`
                 found struct `RangeTo<{integer}>`

error[E0308]: mismatched types
  --> $DIR/issue-54505-no-std.rs:52:16
   |
LL |     take_range(..=42);
   |                ^^^^^
   |                |
   |                expected reference, found struct `RangeToInclusive`
   |                help: consider borrowing here: `&(..=42)`
   |
   = note: expected reference `&_`
                 found struct `RangeToInclusive<{integer}>`

error: aborting due to 7 previous errors

For more information about this error, try `rustc --explain E0308`.