* attribute.cs (GetMarshal): Work even if "DefineCustom" is
[mono.git] / mcs / errors / gcs0080.cs
1 // cs8200.cs: Do not allow type-parameter-constraint-clauses when
2 // there is no type-parameter list
3 //
4 using System.Collections;
5 class Dingus where T : IEnumerable {
6 }
7
8 class D {
9         static void Main ()
10         {
11         }
12 }