quote only work on lambda on net_4_0
[mcs.git] / errors / cs1059-3.cs
blob252a9c128f950b03fda48a824069806848ec0bba
1 // CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2 // Line: 11
4 using System;
6 class X
8 static void Main ()
10 Decimal v;
11 (v = new Decimal ())++;