1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00

Early code generation support

This commit is contained in:
Brian Fiete 2021-01-11 09:41:43 -08:00
parent 0b48a60592
commit 71d4dd0e90
26 changed files with 2422 additions and 1576 deletions

View file

@ -211,9 +211,26 @@ namespace Tests
MethodA(list);
}
public static void MethodC()
{
}
public static void MethodD(delegate void() dlg)
{
}
public static void MethodD<T1>(delegate void(T1) dlg)
{
}
[Test]
public static void TestBasics()
{
MethodD(scope => MethodC);
List<Entry> list = scope .();
list.Sort();