* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-265.cs
1 using System;
2
3 internal class ClassFormatError
4 {
5         internal ClassFormatError(string msg, params object[] p)
6         {
7         }
8
9         static void Main ()
10         { }
11 }
12
13 internal class UnsupportedClassVersionError : ClassFormatError
14 {
15         internal UnsupportedClassVersionError(string msg)
16                 : base(msg)
17         {
18         }
19 }