[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0219-4.cs
1 // CS0219: The variable `e' is assigned but its value is never used
2 // Line: 12
3 // Compiler options: -warn:3 -warnaserror
4
5 using System;
6 public class ConsoleStub
7 {
8         public static void Main()
9         {
10                 try {
11                 } catch (Exception e) {
12                         e = null;
13                 }
14         }
15 }
16