summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0155.cs
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;
	}
}