[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-anon-100.cs
blobbcf4046c2eb6b25e8fd31c0d9bf4e657bae9112c
1 using System;
2 using System.Reflection;
4 class C
6 static Action f = new Action (
7 delegate {
8 Assembly[] aa = {
9 typeof (object).Assembly,
11 });
13 public static void Main ()