codeowners update
[mono.git] / mcs / errors / cs1502-13.cs
1 // CS1502: The best overloaded method match for `T.Blah(out int)' has some invalid arguments
2 // Line: 11
3
4 using System;
5
6 class T {
7         static void Blah (out int g) { g = 0; }
8
9         static int Main (string [] args) {
10                 IntPtr g;
11                 Blah (out g);
12                 return (int) g;
13         }
14 }