* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0168-2.cs
1 // cs0168-2.cs: The variable `e' is declared but never used
2 // Line: 10
3 // Compiler options: -warn:3 -warnaserror
4
5 using System;
6
7 public class ConsoleStub {
8   public static void Main(string[] args) {
9     try {
10     } catch (Exception e) {
11     }
12   }
13 }
14