Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
error-codes
/
E0276.rs
blob: 5e3d9f602ad0bc094f9602334b6efc2f9d2cf8c0 [
file
]
trait
Foo
{
fn
foo
<
T
>(
x
:
T
);
}
impl
Foo
for
bool
{
fn
foo
<
T
>(
x
:
T
)
where T
:
Copy
{}
//~ ERROR E0276
}
fn
main
()
{
}