58ee413ff4971a2a90d4e7f1db5417b642d60ce4
[mono.git] / mcs / errors / gcs0704.cs
1 // CS0704: A nested type cannot be specified through a type parameter `T' 
2 // Line: 6
3
4 class G<T>
5 {
6         T.A x;
7 }