Sign in
fuchsia
/
third_party
/
rust
/
15adfb9cd5b029268e1470a41391d91859b0a1f8
/
.
/
tests
/
ui
/
trait-bounds
/
issue-82038.rs
blob: 11de714faf014c6e9aeef555054a01b717627ad9 [
file
] [
log
] [
blame
]
// 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]
}