summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-161-lib.cs
blob: 3ca3e4e460b0e3434444b644ce0595a28b2473c8 (plain)
1
2
3
4
5
6
7
// Compiler options: -t:library
public class FP {
 public delegate U Mapping<T, U>(T obj);

 public static T identity<T>(T obj) { return obj; }
}