[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1674-2.cs
blob5dc99682a8733ce72e8ebf5152ef80758acef77e
1 // CS1674: `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)