linux-packaging-mono/mcs/tests/test-readonly-01.cs

16 lines
206 B
C#
Raw Permalink Normal View History

// Compiler options: -langversion:latest
using System;
readonly struct S
{
readonly int field;
static int sf;
static event Action e;
static int Prop { get; set; }
public static void Main ()
{
}
}