linux-packaging-mono/mcs/tests/test-anon-100.cs

16 lines
196 B
C#
Raw Permalink Normal View History

using System;
using System.Reflection;
class C
{
static Action f = new Action (
delegate {
Assembly[] aa = {
typeof (object).Assembly,
};
});
public static void Main ()
{
}
}