2018-08-30 12:18:55 +00:00
|
|
|
//@ run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unused_mut)]
|
2024-10-09 21:31:01 +00:00
|
|
|
// Check that a trait is still dyn-compatible (and usable) if it has
|
2015-02-09 13:54:34 +00:00
|
|
|
// methods with by-value self so long as they require `Self : Sized`.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2015-02-09 13:54:34 +00:00
|
|
|
trait Counter {
|
|
|
|
fn tick(&mut self) -> u32;
|
|
|
|
fn get(self) -> u32 where Self : Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CCounter {
|
|
|
|
c: u32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Counter for CCounter {
|
|
|
|
fn tick(&mut self) -> u32 { self.c += 1; self.c }
|
|
|
|
fn get(self) -> u32 where Self : Sized { self.c }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tick1<C:Counter>(mut c: C) -> u32 {
|
|
|
|
tick2(&mut c);
|
|
|
|
c.get()
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
fn tick2(c: &mut dyn Counter) {
|
2015-02-09 13:54:34 +00:00
|
|
|
tick3(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tick3<C:?Sized+Counter>(c: &mut C) {
|
|
|
|
c.tick();
|
|
|
|
c.tick();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut c = CCounter { c: 0 };
|
|
|
|
let value = tick1(c);
|
|
|
|
assert_eq!(value, 2);
|
|
|
|
}
|