Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0168-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c53df44d12e80d9c0bdc7a073eb0ec46c8395639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0168-2.cs: 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) {
    }
  }
}