rust/tests/ui/issues/issue-32122-1.fixed

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

18 lines
308 B
Rust
Raw Normal View History

// run-rustfix
use std::ops::Deref;
struct Foo(u8);
impl Deref for Foo {
type Target = u8;
fn deref(&self) -> &Self::Target {
&self.0
}
}
fn main() {
let a = Foo(0);
// Should suggest `&*` when coercing &ty to *const ty
let _: *const u8 = &*a; //~ ERROR mismatched types
}