2015-01-08 22:02:42 +11:00
|
|
|
// Make sure that indexing an array is only valid with a `usize`, not any other
|
2014-04-01 20:34:40 -07:00
|
|
|
// integral type.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
fn bar<T>(_: T) {}
|
2019-01-14 08:10:45 -05:00
|
|
|
[0][0u8]; //~ ERROR: the type `[{integer}]` cannot be indexed by `u8`
|
2014-04-01 20:34:40 -07:00
|
|
|
|
2015-01-08 22:02:42 +11:00
|
|
|
[0][0]; // should infer to be a usize
|
2014-04-01 20:34:40 -07:00
|
|
|
|
|
|
|
let i = 0; // i is an IntVar
|
2015-01-08 22:02:42 +11:00
|
|
|
[0][i]; // i should be locked to usize
|
2015-01-08 21:54:35 +11:00
|
|
|
bar::<isize>(i); // i should not be re-coerced back to an isize
|
2014-04-01 20:34:40 -07:00
|
|
|
//~^ ERROR: mismatched types
|
|
|
|
}
|