Bump API snapshot submodule
[mono.git] / mcs / errors / cs0119-10.cs
1 // CS0119: Expression denotes a `namespace', where a `variable', `value' or `method group' was expected
2 // Line: 8
3
4 class X
5 {
6         public static void Main ()
7         {
8                 System.Collections.Generic ("");
9         }
10 }