Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0428-3.cs
1 // CS0428: Cannot convert method group `Count' to non-delegate type `int'. Consider using parentheses to invoke the method
2 // Line: 11
3
4 using System.Linq;
5
6 public class A
7 {
8         public A ()
9         {
10                 string [] test = new string [5];
11                 A [] array = new A [test.Count];
12         }
13 }