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