**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0198.cs
blob60bce195511e2c8b5715e3129912846bb43f1f6c
1 // cs0198: can not assign to static readonly variable outside static constructor
2 // Line: 8
3 class X {
4 static readonly int a;
6 static void Y ()
8 a = 1;