summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1674.cs
blob: e586f62556fc87022ae7ca677e45f376b7ee75c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1674: `int': type used in a using statement must be implicitly convertible to `System.IDisposable'
// Line: 8

class C
{
    void Method (int arg)
    {
	using (arg)
	{
	}
    }
}