summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-307.cs
blob: 552b7dbc0a1bfd68f90dfdd5af7fd11af8fbb660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
partial class Foo<T> {}
partial class Foo<T> {
	public delegate int F ();
}

class Bar {
	static int g () { return 0; }
	public static int Main ()
	{
		Foo<int>.F f = g;
		return f ();
	}
}