]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0404.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0404.rs
CommitLineData
5bcae85e
SL
1struct Foo;
2struct Bar;
3
4impl Foo for Bar {} //~ ERROR E0404
a7813a04 5
0531ce1d
XL
6fn main() {}
7
8fn baz<T: Foo>(_: T) {} //~ ERROR E0404