Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1502-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75f591b58bcb1d36e68a80611e985c6585900610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1502-3.cs: The best overloaded match for method 'void T.Blah (out int&)' has some invalid arguments
// Line: 11

using System;

class T {
        static void Blah (out int g) { g = 0; }

        static int Main (string [] args) {
                IntPtr g;
                Blah (out g);
		return (int) g;
        }
}