rustc/tests/ui/error-codes/E0449.rs
2024-06-24 14:48:22 +02:00

19 lines
205 B
Rust

//@ 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() {
}