Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs8135.cs
1 // CS8135: Tuple literal `(int, method group)' cannot be converted to type `object'
2 // Line: 8
3
4 class XX
5 {
6         public static void Main ()
7         {
8                 object m = (1, Main);
9         }
10 }