Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
error-codes
/
E0449.rs
blob: eba0d479e97125e77821e97bce33ad7ee416fdc7 [
file
] [
log
] [
blame
]
struct
Bar
;
trait
Foo
{
fn
foo
();
}
pub
impl
Bar
{}
//~ ERROR E0449
pub
impl
Foo
for
Bar
{
//~ ERROR E0449
pub
fn
foo
()
{}
//~ ERROR E0449
}
fn
main
()
{
}