File: missing-const-parameter.stderr

package info (click to toggle)
rustc 1.87.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 925,564 kB
  • sloc: xml: 158,127; python: 36,039; javascript: 19,761; sh: 19,737; cpp: 18,981; ansic: 13,133; asm: 4,376; makefile: 710; perl: 29; lisp: 28; ruby: 19; sql: 11
file content (65 lines) | stat: -rw-r--r-- 2,022 bytes parent folder | download | duplicates (12)
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[E0425]: cannot find value `N` in this scope
  --> $DIR/missing-const-parameter.rs:3:15
   |
LL | impl Struct<{ N }> {}
   |               ^ not found in this scope
   |
help: you might be missing a const parameter
   |
LL | impl<const N: /* Type */> Struct<{ N }> {}
   |     +++++++++++++++++++++

error[E0425]: cannot find value `N` in this scope
  --> $DIR/missing-const-parameter.rs:7:22
   |
LL | fn func0(_: Struct<{ N }>) {}
   |                      ^ not found in this scope
   |
help: you might be missing a const parameter
   |
LL | fn func0<const N: /* Type */>(_: Struct<{ N }>) {}
   |         +++++++++++++++++++++

error[E0425]: cannot find value `N` in this scope
  --> $DIR/missing-const-parameter.rs:11:18
   |
LL | fn func1(_: [u8; N]) {}
   |                  ^ not found in this scope
   |
help: you might be missing a const parameter
   |
LL | fn func1<const N: /* Type */>(_: [u8; N]) {}
   |         +++++++++++++++++++++

error[E0425]: cannot find value `N` in this scope
  --> $DIR/missing-const-parameter.rs:15:20
   |
LL | fn func2<T>(_: [T; N]) {}
   |                    ^ not found in this scope
   |
help: you might be missing a const parameter
   |
LL | fn func2<T, const N: /* Type */>(_: [T; N]) {}
   |           +++++++++++++++++++++

error[E0425]: cannot find value `C` in this scope
  --> $DIR/missing-const-parameter.rs:19:37
   |
LL | struct Image<const R: usize>([[u32; C]; R]);
   |                    -                ^
   |                    |
   |                    similarly named const parameter `R` defined here
   |
help: a const parameter with a similar name exists
   |
LL - struct Image<const R: usize>([[u32; C]; R]);
LL + struct Image<const R: usize>([[u32; R]; R]);
   |
help: you might be missing a const parameter
   |
LL | struct Image<const R: usize, const C: /* Type */>([[u32; C]; R]);
   |                            +++++++++++++++++++++

error: aborting due to 5 previous errors

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