Sign in
rust
/
rust
/
cfbbb012bc108ee4cbc427c19b62e9e0b57f7fa0
/
.
/
tests
/
ui
/
parser
/
trait-bounds-not-on-impl.rs
blob: 02563847ef32694e055ea88466bb3e2b0a32bd49 [
file
]
trait
Foo
{}
struct
Bar
;
impl
Foo
+
Owned
for
Bar
{}
//~ ERROR expected a trait, found type
fn
main
()
{
}