rust/tests/ui/destructuring-assignment
Esteban Küber 9ac95c10c0 Introduce default_field_values feature
Initial implementation of `#[feature(default_field_values]`, proposed in https://github.com/rust-lang/rfcs/pull/3681.

Support default fields in enum struct variant

Allow default values in an enum struct variant definition:

```rust
pub enum Bar {
    Foo {
        bar: S = S,
        baz: i32 = 42 + 3,
    }
}
```

Allow using `..` without a base on an enum struct variant

```rust
Bar::Foo { .. }
```

`#[derive(Default)]` doesn't account for these as it is still gating `#[default]` only being allowed on unit variants.

Support `#[derive(Default)]` on enum struct variants with all defaulted fields

```rust
pub enum Bar {
    #[default]
    Foo {
        bar: S = S,
        baz: i32 = 42 + 3,
    }
}
```

Check for missing fields in typeck instead of mir_build.

Expand test with `const` param case (needs `generic_const_exprs` enabled).

Properly instantiate MIR const

The following works:

```rust
struct S<A> {
    a: Vec<A> = Vec::new(),
}
S::<i32> { .. }
```

Add lint for default fields that will always fail const-eval

We *allow* this to happen for API writers that might want to rely on users'
getting a compile error when using the default field, different to the error
that they would get when the field isn't default. We could change this to
*always* error instead of being a lint, if we wanted.

This will *not* catch errors for partially evaluated consts, like when the
expression relies on a const parameter.

Suggestions when encountering `Foo { .. }` without `#[feature(default_field_values)]`:

 - Suggest adding a base expression if there are missing fields.
 - Suggest enabling the feature if all the missing fields have optional values.
 - Suggest removing `..` if there are no missing fields.
2024-12-09 21:55:01 +00:00
..
bad-expr-lhs.rs Support bare unit structs in destructuring assignments 2023-12-08 19:55:07 +00:00
bad-expr-lhs.stderr Support bare unit structs in destructuring assignments 2023-12-08 19:55:07 +00:00
default-match-bindings-forbidden.rs
default-match-bindings-forbidden.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
drop-order.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
nested_destructure.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
non-exhaustive-destructure.rs Support bare unit structs in destructuring assignments 2023-12-08 19:55:07 +00:00
non-exhaustive-destructure.stderr Update tests for new TRPL chapter order 2024-11-23 08:57:25 -07:00
note-unsupported.rs
note-unsupported.stderr
slice_destructure.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
slice_destructure_fail.rs add more tests 2023-07-17 22:06:32 +00:00
slice_destructure_fail.stderr add more tests 2023-07-17 22:06:32 +00:00
struct-or-enum-variant-path.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
struct_destructure.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
struct_destructure_fail.rs
struct_destructure_fail.stderr Introduce default_field_values feature 2024-12-09 21:55:01 +00:00
tuple_destructure.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
tuple_destructure_fail.rs
tuple_destructure_fail.stderr
tuple_struct_destructure.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
tuple_struct_destructure_fail.rs
tuple_struct_destructure_fail.stderr
warn-unused-duplication.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
warn-unused-duplication.stderr