Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
wf
/
wf-enum-fields-struct-variant.rs
blob: c25622fa753fc2e97e40fdc458e81faa5e3cd319 [
file
]
// Test that we check struct fields for WFedness.
#![
feature
(
associated_type_defaults
)]
#![
allow
(
dead_code
)]
struct
IsCopy
<
T
:
Copy
>
{
value
:
T
}
enum
AnotherEnum
<
A
>
{
AnotherVariant
{
f
:
IsCopy
<
A
>
//~ ERROR E0277
}
}
fn
main
()
{
}