mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-10 14:02:57 +00:00
![Michael Howell](/assets/img/avatar_default.png)
Closes #82038
It was fixed by b8e5ab20ed
, a wide-reaching
obligation tracking improvement. This commit adds a test case.
10 lines
186 B
Rust
10 lines
186 B
Rust
// Failed bound `bool: Foo` must not point at the `Self: Clone` line
|
|
|
|
trait Foo {
|
|
fn my_method() where Self: Clone;
|
|
}
|
|
|
|
fn main() {
|
|
<bool as Foo>::my_method(); //~ERROR [E0277]
|
|
}
|