[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8170-2.cs
1 // CS8170:
2 // Line: 10
3
4 public struct S
5 {
6         int f;
7
8         public ref S Foo ()
9         {
10                 return ref f;
11         }
12 }