16 lines
185 B
C#
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 ()
|
||
|
{
|
||
|
}
|
||
|
}
|