summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0155-4.cs
blob: 6c1d105c7b8a6d56fd589034fd347dd98ba9b256 (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 (bool b) {}
    }
}