Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0246-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49d2fbe63deb64d221e0f32fa355c2ab95c02b90 (plain)
1
2
3
4
5
6
7
8
9
// gcs0246.cs: The type or namespace name `DateTime`1' could not be found. Are you missing a using directive or an assembly reference?
// Line: 8

using System;

class X
{
	DateTime<int> now;
}