[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1650-3.cs
blobe0cfa0c6ef0acb960b32917f9cb22353860130f7
1 // CS1650: Fields of static readonly field `C<T>.t' cannot be assigned to (except in a static constructor or a variable initializer)
2 // Line: 17
4 using System;
6 interface I
8 int X { get; set; }
11 class C<T> where T : struct, I
13 static readonly T t;
15 public static void Foo ()
17 t.X = 42;