cleol
[mcs.git] / errors / cs1674-2.cs
blobf6f4478f6a1c6125c6ef510be6347ca144968302
1 // cs1674-2.cs: `object': type used in a using statement must be implicitly convertible to `System.IDisposable'
2 // Line: 10
4 using System;
6 class C
8 void Method (IDisposable i)
10 using (object o = i)