[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-lambda-29.cs
blob6ed74d1aaa44840a2e998df3757ca5d9d4178bcd
1 using System;
3 class C<T>
7 class A
9 public static void Main ()
11 M1 ((int[][] arg) => { });
12 M2 ((C<short>[] arg) => { });
13 M3 ((C<short[]>[] arg) => { });
16 static void M1<T> (Action<T[][]> arg)
20 static void M2<T> (Action<C<T>[]> arg)
24 static void M3<T> (Action<C<T[]>[]> arg)