Files
linux-packaging-mono/mcs/errors/cs0308-3.cs

10 lines
148 B
C#
Raw Normal View History

// CS0308: The non-generic type `System.DateTime' cannot be used with the type arguments
// Line: 8
using System;
class X
{
DateTime<int> now;
}