1
Fork 0

Rollup merge of #104266 - compiler-errors:issue-102430, r=Mark-Simulacrum

Regression test for coercion of mut-ref to dyn-star

Closes #102430
This commit is contained in:
Manish Goregaokar 2022-11-13 21:49:26 -05:00 committed by GitHub
commit cc96cdd696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,32 @@
// check-pass
#![feature(dyn_star)]
#![allow(incomplete_features)]
trait AddOne {
fn add1(&mut self) -> usize;
}
impl AddOne for usize {
fn add1(&mut self) -> usize {
*self += 1;
*self
}
}
impl AddOne for &mut usize {
fn add1(&mut self) -> usize {
(*self).add1()
}
}
fn add_one(mut i: dyn* AddOne + '_) -> usize {
i.add1()
}
fn main() {
let mut x = 42usize;
let y = &mut x as (dyn* AddOne + '_);
println!("{}", add_one(y));
}