Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
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
()
{
}