[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0080.cs
1 // CS0080: Constraints are not allowed on non-generic declarations
2 // Line: 5
3
4 using System.Collections;
5 class Dingus where T : IEnumerable {
6 }
7
8 class D {
9         static void Main ()
10         {
11         }
12 }