Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0210.cs
1 // CS0210: You must provide an initializer in a fixed or using statement declaration
2 // Line: 8
3
4 using System.Resources;
5
6 public class MainClass {
7         static void Main () {
8                 using (ResourceReader reader) {
9                 }
10         }
11 }
12