2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0200.cs
1 // cs0200: can not assign to property X.P -- it is readonly
2 // line: 12
3 class X {
4         static int P {
5                 get {
6                         return 1;
7                 }
8         }
9
10         static int Main ()
11         {
12                 P = 10;
13                 return 1;
14         }
15 }