// CS1526: A new expression requires () or [] after type // Line: 10 using System; using System.Collections.Generic; public class Test { static void Main () { List list = new List { "Foo", "Bar", "Baz" }; } }