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

bug13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91016d0a7c7e76d7dfb2c660003c87528e780088 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

class X {
	static void Main ()
	{
		Type t = null;

		if (t.GetType () == null)
			return;
	}
}