Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
wf
/
wf-trait-bound.rs
blob: 62a1eb5b08864988306144a6ac908c0efdc0c77b [
file
] [
log
] [
blame
] [
edit
]
// Test that we check supertrait bounds for WFedness.
#![
feature
(
associated_type_defaults
)]
#![
allow
(
dead_code
)]
trait
ExtraCopy
<
T
:
Copy
>
{
}
trait
SomeTrait
<
T
,
U
>
where T
:
ExtraCopy
<
U
>
//~ ERROR E0277
{
}
fn
main
()
{
}