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: 06e0cf4169feda53d9ad3d2dd9b228d611aa3fb1 (plain)
1
2
3
4
5
6
7
8
9
// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 7
class X {
	static void Main ()
	{
		int a = 9;
		throw a;
	}
}