]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0276.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0276.rs
CommitLineData
5bcae85e
SL
1trait Foo {
2 fn foo<T>(x: T);
3}
3157f602 4
5bcae85e
SL
5impl Foo for bool {
6 fn foo<T>(x: T) where T: Copy {} //~ ERROR E0276
a7813a04
XL
7}
8
9fn main() {
54a0048b 10}