Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git] / mcs / errors / cs0642-5.cs
blob9fd4c16023331830cf587f43e3f146d09bc20045
1 // CS0642: Possible mistaken empty statement
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
5 public class C
7 public void Test (System.IDisposable arg)
9 using (arg);
10 { }