linux-packaging-mono/mcs/tests/test-readonly-03.cs
Xamarin Public Jenkins (auto-signing) 6db692b74b Imported Upstream version 5.10.0.78
Former-commit-id: 46737382176d7b811604042c613d5df6eef74f33
2018-01-31 19:21:06 +00:00

16 lines
185 B
C#

// Compiler options: -langversion:latest
using System;
readonly struct S
{
static S shared = new S ();
public S (int arg)
{
this = shared;
}
public static void Main ()
{
}
}