Unify naming convention for all 2.0 files
[mono.git] / mcs / errors / cs0308-3.cs
1 // CS0308: The non-generic type `System.DateTime' cannot be used with the type arguments
2 // Line: 8
3
4 using System;
5
6 class X
7 {
8         DateTime<int> now;
9 }