Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0449.rs
blob: 32d9b35169ceaa5175375b9dd3cd5ae86db30644 [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
allow
(
warnings
)]
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
()
{
}