2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0425-3.cs
bloba76fa8d84ece03edf382867d441039bce8b927d9
1 // CS0425: The constraints for type parameter `T' of method `C.Foo<T>()' must match the constraints for type parameter `T' of interface method `I.Foo<T>()'. Consider using an explicit interface implementation instead
2 // Line: 11
4 interface I
6 void Foo<T> ();
9 class C : I
11 public void Foo<T> () where T : struct