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

cs0214-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 364a9b5a9a1e4b56cdfcbcf0db9dda855cade203 (plain)
1
2
3
4
5
6
7
class X {
	static void Main ()
	{
		int b;
		int a = (int *) b;
	}
}