blob: 8e37f48c091dfd2582704a9696a2b29688ef40c1 (
plain)
1
2
3
4
5
6
7
8
9
|
// CS0305: Using the generic type `System.Collections.Generic.List<T>' requires `1' type argument(s)
// Line: 8
using System.Collections.Generic;
class X
{
List<int,long> list;
}
|