[Mono.Unix] Fix crasher in StringToHeap (#5639)
[mono.git] / mcs / errors / cs0308-2.cs
1 // CS0308: The non-generic type `NamingContext' cannot be used with the type arguments
2 // Line: 6
3
4 class Program
5 {
6         static NamingContext<int> Lookup ()
7         {
8                 return null;
9         }
10 }
11
12 class NamingContext
13 {
14 }