[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0208-15.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `S<int>.N'
2 // Line: 16
3 // Compiler options: -unsafe
4
5 struct S<T>
6 {
7         public struct N
8         {
9         }
10 }
11
12 unsafe class Test
13 {
14         public static void Main()
15         {
16                 S<int>.N* a;
17         }
18 }