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

cs1502.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d661b4bb5b66f4376e7c114d9836efc10bb85696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1502.cs: The best overloaded method match for `X.foo(ref int)' has some invalid arguments
// Line: 8
class X {
	public void foo (ref int blah) {}

	public void bar (ref int baz)
	{
		foo(out baz);
	}

	static void Main ()
	{
	}
}