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

cs0704.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58ee413ff4971a2a90d4e7f1db5417b642d60ce4 (plain)
1
2
3
4
5
6
7
// CS0704: A nested type cannot be specified through a type parameter `T' 
// Line: 6

class G<T>
{
	T.A x;
}