using System; class Stuff { static int X { set { throw new NotImplementedException(); } } static void Main() { X = 1; } }