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