Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
wf
/
wf-trait-associated-type-bound.rs
blob: 2f20e65e5021adcf7b9d3280ed18bd61b4c30b29 [
file
] [
log
] [
blame
]
// Test that we check associated type bounds for WFedness.
#![
feature
(
associated_type_defaults
)]
#![
allow
(
dead_code
)]
trait
ExtraCopy
<
T
:
Copy
>
{
}
trait
SomeTrait
<
T
>
{
type
Type1
:
ExtraCopy
<
T
>;
//~ ERROR E0277
}
fn
main
()
{
}