]> git.lizzy.rs Git - rust.git/blob - tests/ui/never_type/issue-52443.stderr
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / never_type / issue-52443.stderr
1 warning: denote infinite loops with `loop { ... }`
2   --> $DIR/issue-52443.rs:6:11
3    |
4 LL |     [(); {while true {break}; 0}];
5    |           ^^^^^^^^^^ help: use `loop`
6    |
7    = note: `#[warn(while_true)]` on by default
8
9 error[E0658]: `for` is not allowed in a `const`
10   --> $DIR/issue-52443.rs:9:12
11    |
12 LL |     [(); { for _ in 0usize.. {}; 0}];
13    |            ^^^^^^^^^^^^^^^^^^^^
14    |
15    = note: see issue #87575 <https://github.com/rust-lang/rust/issues/87575> for more information
16    = help: add `#![feature(const_for)]` to the crate attributes to enable
17
18 error[E0308]: mismatched types
19   --> $DIR/issue-52443.rs:2:10
20    |
21 LL |     [(); & { loop { continue } } ];
22    |          ^^^^^^^^^^^^^^^^^^^^^^^ expected `usize`, found reference
23    |
24    = note:   expected type `usize`
25            found reference `&_`
26 help: consider removing the borrow
27    |
28 LL -     [(); & { loop { continue } } ];
29 LL +     [(); { loop { continue } } ];
30    |
31
32 error[E0308]: mismatched types
33   --> $DIR/issue-52443.rs:4:17
34    |
35 LL |     [(); loop { break }];
36    |                 ^^^^^
37    |                 |
38    |                 expected `usize`, found `()`
39    |                 help: give it a value of the expected type: `break 42`
40
41 error[E0015]: cannot convert `RangeFrom<usize>` into an iterator in constants
42   --> $DIR/issue-52443.rs:9:21
43    |
44 LL |     [(); { for _ in 0usize.. {}; 0}];
45    |                     ^^^^^^^^
46    |
47 note: impl defined here, but it is not `const`
48   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
49    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
50
51 error[E0658]: mutable references are not allowed in constants
52   --> $DIR/issue-52443.rs:9:21
53    |
54 LL |     [(); { for _ in 0usize.. {}; 0}];
55    |                     ^^^^^^^^
56    |
57    = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
58    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
59
60 error[E0015]: cannot call non-const fn `<RangeFrom<usize> as Iterator>::next` in constants
61   --> $DIR/issue-52443.rs:9:21
62    |
63 LL |     [(); { for _ in 0usize.. {}; 0}];
64    |                     ^^^^^^^^
65    |
66    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
67
68 error: aborting due to 6 previous errors; 1 warning emitted
69
70 Some errors have detailed explanations: E0015, E0308, E0658.
71 For more information about an error, try `rustc --explain E0015`.