Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
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
()
{
}