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

gcs0404.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b935d369b0bd61d83987250140fd3d03ac8a090 (plain)
1
2
3
4
5
6
7
8
// CS0404: '<' unexpected: attributes cannot be generic
// Line: 3
[Test<T>]
class X
{
	static void Main ()
	{ }
}