Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0307-2.cs
1 // CS0307: The namespace `N.M' cannot be used with type arguments
2 // Line: 15
3
4 namespace N
5 {
6         namespace M
7         {
8         }
9 }
10
11 class Test
12 {
13         static void Main ()
14         {
15                 var a = N.M<int> ();
16         }
17 }