13 lines
96 B
C#
Raw Normal View History

// CS8170:
// Line: 10
public struct S
{
int f;
public ref S Foo ()
{
return ref f;
}
}