d444f0caa4
Former-commit-id: a99f46acaeba3ab496c7afc02c29b839e30a0d0b
17 lines
252 B
C#
17 lines
252 B
C#
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Explicit, Size = 8)]
|
|
public struct Cs0842ExpressionBodyGetterBug
|
|
{
|
|
[FieldOffset(0)]
|
|
public int DummyVariable;
|
|
|
|
public int MyGetter => 5;
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
}
|
|
} |