Merge pull request #3587 from henricm/fix-set-no-delay-tcp-only
[mono.git] / mcs / errors / CS0425-7-lib.cs
1 // CS0425: 
2 // Line: 
3
4 public interface IA
5 {
6         void Foo<U> ();
7 }
8
9 public class CA
10 {
11         public void Foo<T> () where T : class
12         {
13         }
14 }