about summary refs log tree commit diff
path: root/src/test/ui/consts/issue-79152-const-array-index.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-11/+0
2020-11-25Resolve inference variables before trying to remove overloaded indexingAaron Hill-0/+11
Fixes #79152 This code was already set up to handle indexing an array. However, it appears that we never end up with an inference variable for the slice case, so the missing call to `resolve_vars_if_possible` had no effect until now.