svn path=/branches/mono-1-1-9/mcs/; revision=51212
[mono.git] / mcs / errors / cs1674.cs
1 // cs1674.cs: `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 }