Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-307.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 ();
	}
}