]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/missing_const_for_fn/could_be_const.stderr
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / missing_const_for_fn / could_be_const.stderr
CommitLineData
f20569fa
XL
1error: this could be a `const fn`
2 --> $DIR/could_be_const.rs:13:5
3 |
4LL | / pub fn new() -> Self {
5LL | | Self { guess: 42 }
6LL | | }
7 | |_____^
8 |
9 = note: `-D clippy::missing-const-for-fn` implied by `-D warnings`
10
11error: this could be a `const fn`
12 --> $DIR/could_be_const.rs:17:5
13 |
14LL | / fn const_generic_params<'a, T, const N: usize>(&self, b: &'a [T; N]) -> &'a [T; N] {
15LL | | b
16LL | | }
17 | |_____^
18
19error: this could be a `const fn`
20 --> $DIR/could_be_const.rs:23:1
21 |
22LL | / fn one() -> i32 {
23LL | | 1
24LL | | }
25 | |_^
26
27error: this could be a `const fn`
28 --> $DIR/could_be_const.rs:28:1
29 |
30LL | / fn two() -> i32 {
31LL | | let abc = 2;
32LL | | abc
33LL | | }
34 | |_^
35
36error: this could be a `const fn`
37 --> $DIR/could_be_const.rs:34:1
38 |
39LL | / fn string() -> String {
40LL | | String::new()
41LL | | }
42 | |_^
43
44error: this could be a `const fn`
45 --> $DIR/could_be_const.rs:39:1
46 |
47LL | / unsafe fn four() -> i32 {
48LL | | 4
49LL | | }
50 | |_^
51
52error: this could be a `const fn`
53 --> $DIR/could_be_const.rs:44:1
54 |
55LL | / fn generic<T>(t: T) -> T {
56LL | | t
57LL | | }
58 | |_^
59
60error: this could be a `const fn`
61 --> $DIR/could_be_const.rs:67:9
62 |
63LL | / pub fn b(self, a: &A) -> B {
64LL | | B
65LL | | }
66 | |_________^
67
68error: aborting due to 8 previous errors
69