Skip to content

Commit ba39e5d

Browse files
authoredMar 2, 2017
Rollup merge of #40166 - aidanhs:aphs-index-coerce, r=nikomatsakis
Allow types passed to [] to coerce, like .index() Fixes #40085 Basically steals the relevant part of [check_argument_types](https://github.com/rust-lang/rust/blob/1.15.1/src/librustc_typeck/check/mod.rs#L2653-L2672).
2 parents 05e0d74 + c58fff2 commit ba39e5d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed
 

‎src/librustc_typeck/check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3895,7 +3895,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
38953895
let base_t = self.structurally_resolved_type(expr.span, base_t);
38963896
match self.lookup_indexing(expr, base, base_t, idx_t, lvalue_pref) {
38973897
Some((index_ty, element_ty)) => {
3898-
self.demand_eqtype(expr.span, index_ty, idx_t);
3898+
self.demand_coerce(idx, idx_t, index_ty);
38993899
element_ty
39003900
}
39013901
None => {

‎src/test/run-pass/issue-40085.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::ops::Index;
12+
fn bar() {}
13+
static UNIT: () = ();
14+
struct S;
15+
impl Index<fn()> for S {
16+
type Output = ();
17+
fn index(&self, _: fn()) -> &() { &UNIT }
18+
}
19+
fn main() {
20+
S.index(bar);
21+
S[bar];
22+
}

0 commit comments

Comments
 (0)
Please sign in to comment.