From cb3ab7f0181a4dcd63200ee04bb947ed4492530f Mon Sep 17 00:00:00 2001 From: Bernardo Sulzbach Date: Sun, 11 May 2025 21:29:31 +0200 Subject: [PATCH] Show what `use_field_init_shorthand = true` does It did not include `b` for the `use_field_init_shorthand = true` case, which is a mistake as it is the one thing that will be changed by this option. --- Configurations.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Configurations.md b/Configurations.md index 58d7aac52ef..30996952eca 100644 --- a/Configurations.md +++ b/Configurations.md @@ -3046,6 +3046,7 @@ fn main() { let y = 2; let z = 3; let a = Foo { x, y, z }; + let b = Foo { x, y, z }; } ```