11 lines
196 B
C#
Raw Normal View History

// 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);
}
}