[System.Net] Add support for .pac proxy config scripts on mac
[mono.git] / mcs / errors / cs1031.cs
1 // CS1031: Type expected
2 // Line: 17
3
4 using System;
5
6 class C<T>
7 {
8         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 }
20