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