Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0210-3.cs
blob8f62e0b8f8619943294aba87d065bb3b54a1369d
1 // CS0210: You must provide an initializer in a fixed or using statement declaration
2 // Line: 14
4 using System;
6 public class C : IDisposable
8 public void Dispose ()
12 static void Main ()
14 using (C a = new C (), b) {