summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1015.cs
blob: adce09caa7aa2b4ca460ceb550745d4b01fc9642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1015: A type that derives from `System.Exception', `object', or `string' expected
// Line: 9

class Test
{
    public static void Main ()
    {
    	try {}
    	catch () {}
    }
}