mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
28 lines
442 B
Rust
28 lines
442 B
Rust
// run-pass
|
|
|
|
#![feature(unsized_fn_params)]
|
|
|
|
use std::ops;
|
|
use std::ops::Index;
|
|
|
|
pub struct A;
|
|
|
|
impl ops::Index<str> for A {
|
|
type Output = ();
|
|
fn index(&self, _: str) -> &Self::Output {
|
|
&()
|
|
}
|
|
}
|
|
|
|
impl ops::IndexMut<str> for A {
|
|
fn index_mut(&mut self, _: str) -> &mut Self::Output {
|
|
panic!()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let a = A {};
|
|
let s = String::new().into_boxed_str();
|
|
assert_eq!(&(), a.index(*s));
|
|
}
|