Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs7003.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 17
3
4 using System;
5
6 class C<T>
7 {
8         public class G<U>
9         {
10         }
11 }
12
13 class M
14 {
15         public static void Main ()
16         {
17                 Type t = typeof (C<int>.G<>);
18         }
19 }