[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0305-4.cs
1 // CS0305: Using the generic type `A.B<T>' requires `1' type argument(s)
2 // Line: 12
3
4 class A 
5 {
6         class B<T> 
7         { 
8         }
9         
10         static void Main() 
11         {
12                 B b = new B<A>();
13         }
14 }