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

test-772.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 031d81d7446adb64f41776139fa1d1c352bd53ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

public class Test
{
	public static void Main ()
	{
		Foo fu = new Foo (null);
	}
}

class Foo
{
	public Foo (object o)
	{
		throw new ApplicationException ("wrong ctor");
	}

	public Foo (string s, params object[] args)
	{
	}
}