mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
31 lines
659 B
Rust
31 lines
659 B
Rust
//@ run-pass
|
|
|
|
#![feature(fn_traits, unboxed_closures)]
|
|
|
|
trait Foo { fn dummy(&self) { }} //~ WARN method `dummy` is never used
|
|
|
|
struct Bar;
|
|
|
|
impl<'a> std::ops::Fn<(&'a (dyn Foo+'a),)> for Bar {
|
|
extern "rust-call" fn call(&self, _: (&'a dyn Foo,)) {}
|
|
}
|
|
|
|
impl<'a> std::ops::FnMut<(&'a (dyn Foo+'a),)> for Bar {
|
|
extern "rust-call" fn call_mut(&mut self, a: (&'a dyn Foo,)) { self.call(a) }
|
|
}
|
|
|
|
impl<'a> std::ops::FnOnce<(&'a (dyn Foo+'a),)> for Bar {
|
|
type Output = ();
|
|
extern "rust-call" fn call_once(self, a: (&'a dyn Foo,)) { self.call(a) }
|
|
}
|
|
|
|
struct Baz;
|
|
|
|
impl Foo for Baz {}
|
|
|
|
fn main() {
|
|
let bar = Bar;
|
|
let baz = &Baz;
|
|
bar(baz);
|
|
}
|