2009-04-27 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / errors / gcs8038.cs
blob511595d1c9d094374398e0163e722cb12e7727ac
1 // CS8038: Covariant type parameters cannot be used as method parameters
2 // Line: 7
3 // Compiler options: -langversion:future
5 interface A<out T>
7 void B(T t);