fork(3) download
  1. using System;
  2.  
  3. class T {
  4. static int _x;
  5. static int X { get { return _x -= 2; } }
  6.  
  7. static void Main() { Console.WriteLine(X == X + 2); }
  8. }
Success #stdin #stdout 0.03s 36896KB
stdin
Standard input is empty
stdout
True