New tests
[mono.git] / mcs / errors / cs0191.cs
1 // cs0191: can not assign to readonly variable outside constructor
2 // Line: 8
3 class X {
4         readonly int a;
5
6         void Y ()
7         {
8                 a = 1;
9         }
10 }
11
12