[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0219-4.cs
blob3bfca0149cae72005f7b72ac57cb363b44f9e655
1 // CS0219: The variable `e' is assigned but its value is never used
2 // Line: 12
3 // Compiler options: -warn:3 -warnaserror
5 using System;
6 public class ConsoleStub
8 public static void Main()
10 try {
11 } catch (Exception e) {
12 e = null;