linux-packaging-mono/mcs/tests/gtest-lambda-14.cs

14 lines
140 B
C#
Raw Normal View History

// identity functions
using System;
class Test {
public static void Main ()
{
}
static void Foo<T> ()
{
Func<T,T> f = n => n;
}
}