[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs1738-3.cs
blob53c4efc35530db29197080120be290953cedc764
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 14
4 class C
6 int this [int a, string s] {
7 get {
8 return 1;
12 void Test ()
14 var r = this [a : 1, "out"];