[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / gtest-161-lib.cs
1 // Compiler options: -t:library
2 public class FP {
3  public delegate U Mapping<T, U>(T obj);
4
5  public static T identity<T>(T obj) { return obj; }
6 }
7