Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1674.cs
1 // CS1674: `int': type used in a using statement must be implicitly convertible to `System.IDisposable'
2 // Line: 8
3
4 class C
5 {
6     void Method (int arg)
7     {
8         using (arg)
9         {
10         }
11     }
12 }