blob: 3bfca0149cae72005f7b72ac57cb363b44f9e655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0219: The variable `e' is assigned but its value is never used
// Line: 12
// Compiler options: -warn:3 -warnaserror
using System;
public class ConsoleStub
{
public static void Main()
{
try {
} catch (Exception e) {
e = null;
}
}
}
|