// cs0191: can not assign to readonly variable outside constructor // Line: 8 class X { readonly int a; void Y () { a = 1; } }