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