Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0210-3.cs
1 // CS0210: You must provide an initializer in a fixed or using statement declaration
2 // Line: 14
3
4 using System;
5
6 public class C : IDisposable
7 {
8         public void Dispose ()
9         {
10         }
11
12         static void Main ()
13         {
14                 using (C a = new C (), b) {
15                 }
16         }
17 }
18