new test
[mono.git] / mcs / errors / gcs0246-2.cs
1 // gcs0246.cs: Cannot find type 'List`2'
2 // Line: 8
3
4 using System.Collections.Generic;
5
6 class X
7 {
8         List<int,long> list;
9 }