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

cs0155-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87288c5193600d3922517b3971ad81cd8e794d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0155-2.cs: The type caught or thrown must be derived from System.Exception
// Line: 8
class X {
	static void Main ()
	{
		try {
		} catch (object e) {
			throw;
		}
	}
}