summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0210-3.cs
blob: 8f62e0b8f8619943294aba87d065bb3b54a1369d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0210: You must provide an initializer in a fixed or using statement declaration
// Line: 14

using System;

public class C : IDisposable
{
	public void Dispose ()
	{
	}

	static void Main ()
	{
		using (C a = new C (), b) {
		}
	}
}