rust/tests/ui/impl-trait/call_method_on_inherent_impl_ref.rs

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

35 lines
602 B
Rust
Raw Normal View History

2024-04-15 11:20:33 +00:00
//@ revisions: current next
//@[next] compile-flags: -Znext-solver
trait MyDebug {
fn my_debug(&self);
}
impl<T> MyDebug for &T
where
T: std::fmt::Debug,
{
fn my_debug(&self) {}
}
fn my_foo() -> impl std::fmt::Debug {
if false {
let x = my_foo();
//[next]~^ ERROR type annotations needed
2024-04-15 11:20:33 +00:00
x.my_debug();
//[current]~^ ERROR no method named `my_debug` found
2024-04-15 11:20:33 +00:00
}
()
}
fn my_bar() -> impl std::fmt::Debug {
if false {
let x = &my_bar();
//[next]~^ ERROR type annotations needed
2024-04-15 11:20:33 +00:00
x.my_debug();
}
()
}
fn main() {}