Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
wf
/
wf-enum-fields.rs
blob: a465ffe5ecba8cc383fd1fee3ed5e8611d426a75 [
file
] [
log
] [
blame
] [
edit
]
// Test that we check struct fields for WFedness.
#![
feature
(
associated_type_defaults
)]
#![
allow
(
dead_code
)]
struct
IsCopy
<
T
:
Copy
>
{
value
:
T
}
enum
SomeEnum
<
A
>
{
SomeVariant
(
IsCopy
<
A
>)
//~ ERROR E0277
}
fn
main
()
{
}