mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
216 B
Rust
14 lines
216 B
Rust
// run-pass
|
|
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];
|
|
}
|