rust/tests/ui/close-over-big-then-small-data.rs

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

40 lines
724 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
2014-08-01 23:42:13 +00:00
// If we use GEPi rather than GEP_tup_like when
// storing closure data (as we used to do), the u64 would
// overwrite the u16.
2013-03-07 03:09:17 +00:00
struct Pair<A,B> {
a: A, b: B
2013-03-07 03:09:17 +00:00
}
2013-09-17 06:37:54 +00:00
struct Invoker<A> {
a: A,
b: u16,
}
trait Invokable<A> {
fn f(&self) -> (A, 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);
}