blob: fe3d82c8e7bfc37d58c3b6c0bfae7736787effa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0080: Constraints are not allowed on non-generic declarations
// Line: 5
using System.Collections;
class Dingus where T : IEnumerable {
}
class D {
static void Main ()
{
}
}
|