Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-307.cs
1 partial class Foo<T> {}
2 partial class Foo<T> {
3         public delegate int F ();
4 }
5
6 class Bar {
7         static int g () { return 0; }
8         public static int Main ()
9         {
10                 Foo<int>.F f = g;
11                 return f ();
12         }
13 }