mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
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);
|
|
}
|