summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0155-3.cs
blob: c10dce4dc5b5311ce2fb6a132bad2af6b590c7e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 9

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