Hi Jostein! What do you think of this patch? It fixes typing out this, taken from [0]: ``` namespace Foo { class Foo { void foo() { CatOwner owner = new CatOwner { Cats = new List { new X { Name = "Sylvester", Age=8 }, new Cat { Name = "Whiskers", Age=2 }, new Cat { Name = "Sasha", Age=14 } } }; var x = new { X = 5 }; Foo foo = new Foo { }; Cat cat = new Cat { Cats = new List { new X { Name = "Sten" }, new Y { Foo = "rst" } } }; Cat c = new Foo() { }; RudimentaryMultiValuedDictionary rudimentaryMultiValuedDictionary3 = new RudimentaryMultiValuedDictionary() { {"Group1", new string []{ "Bob", "John", "Mary" } }, { "Group2", new string[]{ "Eric", "Emily", "Debbie", "Jesse" } } }; } } } ``` Are there any regressions, or is this ok to you? Theo [0]: