Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-445.cs
1 class Test
2 {
3         public static void Main () { }
4
5         static void Foo<T> (ref T t) { }
6         static void Foo<T> (T[] t) { }
7         static void Foo<T> (T[,] t) { }
8         static void Foo<T> (T[, ,] t) { }
9
10         static void Bar (ref int t) { }
11         static void Bar (int[] t) { }
12         static void Bar (int[,] t) { }
13         static void Bar (int[, ,] t) { }
14 }