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

cs1059-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 979088d14bb5756a829696c6dce58fb5d2a27b48 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
// Line: 8

using System;

public class Test {
	void Main () {
		Console.WriteLine (++0);
	}
}