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

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

internal class ClassFormatError
{
	internal ClassFormatError(string msg, params object[] p)
	{
	}

	public static void Main ()
	{ }
}

internal class UnsupportedClassVersionError : ClassFormatError
{
	internal UnsupportedClassVersionError(string msg)
		: base(msg)
	{
	}
}