2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[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 }