1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// CS1525: Unexpected symbol `/' // Line: 10 namespace Test674 { class MainClass { public static void Main(string[] args) { var a = new A(another: something, sth: /without/quotes); } } public class A { public A(string sth, string another) { } } }