* Makefile.am: Build `docs` after `runtime`, so that it can depend
[mono.git] / mono / dis / tests / gen-prop.cs
1 //Property using a generic param
2 class g<T>
3 {
4         public T abc {
5                 get { return default (T); }
6         }
7 }