summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0168-2.cs
blob: cd4a4275e58a6b40c40d18c66d0cb77ecad5a421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0168: The variable `e' is declared but never used
// Line: 10
// Compiler options: -warn:3 -warnaserror

using System;

public class ConsoleStub {
  public static void Main(string[] args) {
    try {
    } catch (Exception e) {
    }
  }
}