Add a more functional (i.e. fewer-stubs) implementation of System.Data.Linq.
[mono.git] / mcs / errors / gcs8038.cs
1 // CS8038: Covariant type parameters cannot be used as method parameters\r
2 // Line: 7\r
3 // Compiler options: -langversion:future
4
5 interface A<out T>
6 {
7         void B(T t);
8 }