summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attempted-access-non-fatal.stderr
blob: 5b7db0e9d6fb41b5838736524e00a2e40d44f2ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:4:15
   |
LL |     let _ = x.foo;
   |               ^^^

error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:5:15
   |
LL |     let _ = x.bar;
   |               ^^^

error: aborting due to 2 previous errors

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