2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-445.cs
blobd68111c20ec4d15ae56cf7ea7b7e87868a7e013b
1 class Test
3 static void Main () { }
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) { }
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) { }