2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-01-01 16:49:01 -06:00
|
|
|
// Issue 33903:
|
|
|
|
// Built-in indexing should be used even when the index is not
|
|
|
|
// trivially an integer
|
2018-08-19 08:30:23 -05:00
|
|
|
// Only built-in indexing can be used in constant expressions
|
2018-01-01 16:49:01 -06:00
|
|
|
|
|
|
|
const FOO: i32 = [12, 34][0 + 1];
|
|
|
|
|
|
|
|
fn main() {}
|