a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
11 lines
196 B
C#
11 lines
196 B
C#
// 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);
|
|
}
|
|
}
|