diff options
Diffstat (limited to 'tests/ui/error-codes/E0608.stderr')
-rw-r--r-- | tests/ui/error-codes/E0608.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0608.stderr b/tests/ui/error-codes/E0608.stderr new file mode 100644 index 000000000..3aec50993 --- /dev/null +++ b/tests/ui/error-codes/E0608.stderr @@ -0,0 +1,9 @@ +error[E0608]: cannot index into a value of type `u8` + --> $DIR/E0608.rs:2:5 + | +LL | 0u8[2]; + | ^^^^^^ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0608`. |