@@ -14,7 +14,7 @@ LL | Variant {
1414 |
1515 = help: consider a manual implementation of `Default`
1616
17- error[E0658]: default values on `struct` fields aren't supported
17+ error[E0658]: default values on fields are experimental
1818 --> $DIR/feature-gate-default-field-values.rs:8:15
1919 |
2020LL | pub bar: S = S,
@@ -24,7 +24,7 @@ LL | pub bar: S = S,
2424 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
2525 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2626
27- error[E0658]: default values on `struct` fields aren't supported
27+ error[E0658]: default values on fields are experimental
2828 --> $DIR/feature-gate-default-field-values.rs:9:17
2929 |
3030LL | pub baz: i32 = 42 + 3,
@@ -34,7 +34,7 @@ LL | pub baz: i32 = 42 + 3,
3434 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
3535 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
3636
37- error[E0658]: default values on `struct` fields aren't supported
37+ error[E0658]: default values on fields are experimental
3838 --> $DIR/feature-gate-default-field-values.rs:16:15
3939 |
4040LL | bar: S = S,
@@ -44,7 +44,7 @@ LL | bar: S = S,
4444 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
4545 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
4646
47- error[E0658]: default values on `struct` fields aren't supported
47+ error[E0658]: default values on fields are experimental
4848 --> $DIR/feature-gate-default-field-values.rs:17:17
4949 |
5050LL | baz: i32 = 42 + 3,
@@ -54,7 +54,7 @@ LL | baz: i32 = 42 + 3,
5454 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
5555 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
5656
57- error[E0658]: default values on `struct` fields aren't supported
57+ error[E0658]: default values on fields are experimental
5858 --> $DIR/feature-gate-default-field-values.rs:23:11
5959 |
6060LL | bar: S = Qux::<A, C>::S,
@@ -64,7 +64,7 @@ LL | bar: S = Qux::<A, C>::S,
6464 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
6565 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
6666
67- error[E0658]: default values on `struct` fields aren't supported
67+ error[E0658]: default values on fields are experimental
6868 --> $DIR/feature-gate-default-field-values.rs:24:13
6969 |
7070LL | baz: i32 = foo(),
@@ -74,7 +74,7 @@ LL | baz: i32 = foo(),
7474 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
7575 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
7676
77- error[E0658]: default values on `struct` fields aren't supported
77+ error[E0658]: default values on fields are experimental
7878 --> $DIR/feature-gate-default-field-values.rs:25:13
7979 |
8080LL | bat: i32 = <Qux<A, C> as T>::K,
@@ -84,7 +84,7 @@ LL | bat: i32 = <Qux<A, C> as T>::K,
8484 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
8585 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
8686
87- error[E0658]: default values on `struct` fields aren't supported
87+ error[E0658]: default values on fields are experimental
8888 --> $DIR/feature-gate-default-field-values.rs:26:13
8989 |
9090LL | bay: i32 = C,
@@ -94,7 +94,7 @@ LL | bay: i32 = C,
9494 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
9595 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
9696
97- error[E0658]: default values on `struct` fields aren't supported
97+ error[E0658]: default values on fields are experimental
9898 --> $DIR/feature-gate-default-field-values.rs:27:16
9999 |
100100LL | bak: Vec<A> = Vec::new(),
@@ -104,7 +104,7 @@ LL | bak: Vec<A> = Vec::new(),
104104 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
105105 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
106106
107- error[E0658]: default values on `struct` fields aren't supported
107+ error[E0658]: default values on fields are experimental
108108 --> $DIR/feature-gate-default-field-values.rs:49:17
109109 |
110110LL | optional: () = (),
@@ -114,7 +114,7 @@ LL | optional: () = (),
114114 = help: add `#![feature(default_field_values)]` to the crate attributes to enable
115115 = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
116116
117- error[E0658]: default values on `struct` fields aren't supported
117+ error[E0658]: default values on fields are experimental
118118 --> $DIR/feature-gate-default-field-values.rs:57:21
119119 |
120120LL | optional: () = (),
0 commit comments