Remove comment

Co-Authored-By: Philipp Krones <hello@philkrones.com>
This commit is contained in:
Philipp Hansch 2019-07-16 21:28:37 +02:00 committed by GitHub
parent 633934da18
commit 65e9477b84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
fn main() {
let empty: [i8; 0] = [];
empty[0]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
empty[0];
&empty[1..5];
&empty[0..=4];
&empty[..=4];