2009-06-17 Marek Safar <marek.safar@gmail.com>
[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 }