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

cs0214-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e40bbfb72473156eed0aef0a5b6e6dcf3e372429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct X {
	static unsafe void *a ()
		{
			return null;
		}

	static void Main ()
		{
			a ();
		}
	
}