Files
rust/tests/ui/impl-trait/call_method_on_inherent_impl.rs

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

25 lines
339 B
Rust
Raw Normal View History

2024-04-15 11:20:33 +00:00
//@ revisions: current next
//@[next] compile-flags: -Znext-solver
2025-09-23 17:33:24 +02:00
//@ check-pass
2024-04-15 11:20:33 +00:00
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();
x.my_debug();
}
()
}
fn main() {}