rust/tests/ui/traits/alignment-gep-tup-like-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
627 B
Rust
Raw Normal View History

// run-pass
#![allow(non_camel_case_types)]
#![allow(dead_code)]
struct pair<A,B> {
a: A, b: B
}
2013-09-17 06:37:54 +00:00
trait Invokable<A> {
fn f(&self) -> (A, u16);
}
struct Invoker<A> {
a: A,
b: u16,
}
impl<A:Clone> Invokable<A> for Invoker<A> {
fn f(&self) -> (A, u16) {
(self.a.clone(), self.b)
}
}
2019-05-28 18:47:21 +00:00
fn f<A:Clone + 'static>(a: A, b: u16) -> Box<dyn Invokable<A>+'static> {
Box::new(Invoker {
2013-09-17 06:37:54 +00:00
a: a,
b: b,
}) as Box<dyn Invokable<A>+'static>
}
pub fn main() {
2013-09-17 06:37:54 +00:00
let (a, b) = f(22_u64, 44u16).f();
2014-10-15 01:07:11 +00:00
println!("a={} b={}", a, b);
assert_eq!(a, 22u64);
assert_eq!(b, 44u16);
}