Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0449.fixed
blob: c7b4566303dc0350a4adcb9d9ca0668b30c84d9c [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![allow(warnings)]
struct
Bar
;
trait
Foo
{
fn foo
();
}
impl
Bar
{}
//~ ERROR E0449
impl
Foo
for
Bar
{
//~ ERROR E0449
fn foo
()
{}
//~ ERROR E0449
}
fn main
()
{
}