New test.
[mono.git] / mcs / errors / cs0642-5.cs
1 // cs0642-5.cs: Possible mistaken empty statement
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
4
5 public class C
6 {
7     public void Test (System.IDisposable arg)
8     {
9         using (arg);
10             { }
11     }
12 }
13