]> git.lizzy.rs Git - rust.git/commitdiff
Allow types passed to [] to coerce, like .index()
authorAidan Hobson Sayers <aidanhs@cantab.net>
Tue, 28 Feb 2017 23:46:47 +0000 (23:46 +0000)
committerAidan Hobson Sayers <aidanhs@cantab.net>
Wed, 1 Mar 2017 00:15:13 +0000 (00:15 +0000)
Fixes #40085

src/librustc_typeck/check/mod.rs
src/test/run-pass/issue-40085.rs [new file with mode: 0644]

index 9d963226caf4bad488352f593cfa7731d2f86e59..fbea34c95a6d73bc064d009e1be01cbacbec9bd3 100644 (file)
@@ -3912,7 +3912,7 @@ fn check_expr_kind(&self,
                   let base_t = self.structurally_resolved_type(expr.span, base_t);
                   match self.lookup_indexing(expr, base, base_t, idx_t, lvalue_pref) {
                       Some((index_ty, element_ty)) => {
-                          self.demand_eqtype(expr.span, index_ty, idx_t);
+                          self.demand_coerce(idx, idx_t, index_ty);
                           element_ty
                       }
                       None => {
diff --git a/src/test/run-pass/issue-40085.rs b/src/test/run-pass/issue-40085.rs
new file mode 100644 (file)
index 0000000..b6d0290
--- /dev/null
@@ -0,0 +1,22 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+use std::ops::Index;
+fn bar() {}
+static UNIT: () = ();
+struct S;
+impl Index<fn()> for S {
+    type Output = ();
+    fn index(&self, _: fn()) -> &() { &UNIT }
+}
+fn main() {
+    S.index(bar);
+    S[bar];
+}