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

cs0155-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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[]) {}
    }
}