2014-04-01 22:39:26 -05:00
|
|
|
pub fn main() {
|
2016-10-29 16:54:04 -05:00
|
|
|
let v: Vec<isize> = vec![0, 1, 2, 3, 4, 5];
|
2014-05-25 05:17:19 -05:00
|
|
|
let s: String = "abcdef".to_string();
|
2015-02-18 04:42:01 -06:00
|
|
|
v[3_usize];
|
2015-02-01 20:53:25 -06:00
|
|
|
v[3];
|
2019-01-14 07:10:45 -06:00
|
|
|
v[3u8]; //~ERROR : the type `[isize]` cannot be indexed by `u8`
|
|
|
|
v[3i8]; //~ERROR : the type `[isize]` cannot be indexed by `i8`
|
|
|
|
v[3u32]; //~ERROR : the type `[isize]` cannot be indexed by `u32`
|
|
|
|
v[3i32]; //~ERROR : the type `[isize]` cannot be indexed by `i32`
|
2015-02-18 04:42:01 -06:00
|
|
|
s.as_bytes()[3_usize];
|
2015-01-03 22:43:24 -06:00
|
|
|
s.as_bytes()[3];
|
2019-01-14 07:10:45 -06:00
|
|
|
s.as_bytes()[3u8]; //~ERROR : the type `[u8]` cannot be indexed by `u8`
|
|
|
|
s.as_bytes()[3i8]; //~ERROR : the type `[u8]` cannot be indexed by `i8`
|
|
|
|
s.as_bytes()[3u32]; //~ERROR : the type `[u8]` cannot be indexed by `u32`
|
|
|
|
s.as_bytes()[3i32]; //~ERROR : the type `[u8]` cannot be indexed by `i32`
|
2014-04-01 22:39:26 -05:00
|
|
|
}
|