13 lines
96 B
C#
13 lines
96 B
C#
// CS8170:
|
|
// Line: 10
|
|
|
|
public struct S
|
|
{
|
|
int f;
|
|
|
|
public ref S Foo ()
|
|
{
|
|
return ref f;
|
|
}
|
|
}
|