2010-04-14 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1650.cs
blob51f0bcccf4ca2d43ee831cf4cfe12e9b6977b4ab
1 // cs1650.cs: Fields of static readonly field `C.s' cannot be assigned to (except in a static constructor or a variable initializer)
2 // Line: 14
4 using System;
6 struct S {
7 public int x;
10 class C {
11 static readonly S s;
13 public static void Main(String[] args) {
14 s.x = 42;
15 Console.WriteLine(s.x);