From b543f3a4b29f15d6db7fb0ccab8bdc9900cbf84e Mon Sep 17 00:00:00 2001 From: ParkHanbum Date: Wed, 28 Sep 2016 22:44:28 +0900 Subject: [PATCH] Add testcase for issue-18088. ref : https://github.com/rust-lang/rust/issues/18088. --- src/test/run-pass/issue-18088.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/run-pass/issue-18088.rs diff --git a/src/test/run-pass/issue-18088.rs b/src/test/run-pass/issue-18088.rs new file mode 100644 index 00000000000..a45256387d6 --- /dev/null +++ b/src/test/run-pass/issue-18088.rs @@ -0,0 +1,17 @@ +// Copyright 2016 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + + +pub trait Indexable: std::ops::Index { + fn index2(&self, i: usize) -> &T { + &self[i] + } +} +fn main() {}