Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git] / mcs / errors / cs0642-11.cs
blob7a13563b0c2ea99f539944ec21da6e87eec27961
1 // CS0642: Possible mistaken empty statement
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
5 public class C
7 public void Test ()
9 using (System.IDisposable arg = null);
10 { }