[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs1914.cs
1 // CS1914: Static field or property `Data.Count' cannot be assigned in an object initializer
2 // Line: 17
3
4
5 using System;
6 using System.Collections.Generic;
7
8 class Data
9 {
10         public static int Count;
11 }
12
13 public class Test
14 {
15         static void Main ()
16         {
17                 var c = new Data { Count = 10 };
18         }
19 }