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

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