diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/attempted-access-non-fatal.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/attempted-access-non-fatal.stderr b/src/test/ui/attempted-access-non-fatal.stderr new file mode 100644 index 000000000..5b7db0e9d --- /dev/null +++ b/src/test/ui/attempted-access-non-fatal.stderr @@ -0,0 +1,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`. |