summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0308-3.cs
blob: 140d3af9f1f773a95290a6e81373ed46cacf405d (plain)
1
2
3
4
5
6
7
8
9
// CS0308: The non-generic type `System.DateTime' cannot be used with the type arguments
// Line: 8

using System;

class X
{
	DateTime<int> now;
}