mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
31e5dd3a79
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]
|
|
}
|