blob: d82e0b8d43ff64f3a06318b47cfbe6b72475a4b1 [file] [log] [blame]
//@ compile-flags: -Znext-solver
//@ check-pass
const fn foo() {
let mut x = [1, 2, 3];
// We need to fix up `<<[i32; 3] as Index<usize>>::Output as AddAssign>`
// to be treated like a built-in operation.
x[1] += 5;
}
fn main() {}