summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1059-2.cs
blob: 800f23b28f65fabeab564fd6d0ee4f32dfc36d84 (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);
	}
}