[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1678-2.cs
blob03a71197aa02571c44cf47d1f0430a4ca05ae282
1 // CS1678: Parameter `1' is declared as type `T' but should be `IStream<T>'
2 // Line: 14
4 using System;
6 interface IStream<T>
10 static class X
12 public static IStream<U> Select<T, U> (IStream<T> stream, Func<IStream<T>, U> selector)
14 return Select<T, U> (stream, (T _) => selector(stream));