This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0155-2.cs
1 // cs0155-2.cs: The type caught or thrown must be derived from System.Exception
2 // Line: 8
3 class X {
4         static void Main ()
5         {
6                 try {
7                         ;
8                 } catch (int e) {
9                         throw;
10                 }
11         }
12 }