]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-24365.stderr
Merge commit 'b40ea209e7f14c8193ddfc98143967b6a2f4f5c9' into clippyup
[rust.git] / src / test / ui / issues / issue-24365.stderr
1 error[E0609]: no field `b` on type `Foo`
2   --> $DIR/issue-24365.rs:10:22
3    |
4 LL |     println!("{}", a.b);
5    |                      ^
6
7 error[E0609]: no field `attr_name_idx` on type `&Attribute`
8   --> $DIR/issue-24365.rs:17:18
9    |
10 LL |     let z = (&x).attr_name_idx;
11    |                  ^^^^^^^^^^^^^
12
13 error[E0609]: no field `attr_name_idx` on type `Attribute`
14   --> $DIR/issue-24365.rs:18:15
15    |
16 LL |     let y = x.attr_name_idx;
17    |               ^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0609`.