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