Flush (work in progress)
[mono.git] / mcs / errors / gcs0305-6.cs
1 // CS0305: Using the generic type `System.Collections.Generic.List<T>' requires `1' type argument(s)
2 // Line: 8
3
4 using System.Collections.Generic;
5
6 class X
7 {
8         List<int,long> list;
9 }