[ci] Only build the additional profiles on one arch instead of everywhere
[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 { }