Align libmonoruntime vcxproj with makefile.
[mono.git] / mcs / errors / cs0029-14.cs
1 // CS0029: Cannot implicitly convert type `int' to `System.IDisposable'
2 // Line: 8
3
4 class A
5 {
6         public static void Main ()
7         {
8                 System.IDisposable id = 1;
9         }
10 }