[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0704.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 }