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