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

cs0193.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d412139eefbce56b79f059dca35022463d804c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0193.cs: * or -> operator can only be applied to pointer types.
// Line: 8

unsafe class X {
	static void Main ()
	{
		int a;
		if (*a == 0)
			return 1;
		
		return 0;
	}
}