]> git.proxmox.com Git - rustc.git/blob - tests/ui/error-codes/E0449.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / error-codes / E0449.rs
1 struct Bar;
2
3 trait Foo {
4 fn foo();
5 }
6
7 pub impl Bar {} //~ ERROR E0449
8
9 pub impl Foo for Bar { //~ ERROR E0449
10 pub fn foo() {} //~ ERROR E0449
11 }
12
13 fn main() {
14 }