Merge pull request #1435 from akoeplinger/fix-s390-build
[mono.git] / mcs / errors / cs8071-2.cs
1 // CS8071: Type arguments are not allowed in the nameof operator
2 // Line: 10
3
4 using SCGL = System.Collections.Generic.List<int>;
5
6 class X
7 {
8         public static int Main ()
9         {
10                 var x = nameof (SCGL.Contains);
11                 return 0;
12         }
13 }