]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-58712.stderr
point at private fields in struct literal
[rust.git] / src / test / ui / issues / issue-58712.stderr
1 error[E0412]: cannot find type `DeviceId` in this scope
2   --> $DIR/issue-58712.rs:6:20
3    |
4 LL | impl<H> AddrVec<H, DeviceId> {
5    |       -            ^^^^^^^^ not found in this scope
6    |       |
7    |       help: you might be missing a type parameter: `, DeviceId`
8
9 error[E0412]: cannot find type `DeviceId` in this scope
10   --> $DIR/issue-58712.rs:8:29
11    |
12 LL |     pub fn device(&self) -> DeviceId {
13    |                             ^^^^^^^^ not found in this scope
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0412`.