update readme (#21797)
[mono-project.git] / mcs / errors / cs8149.cs
blob351dd54235bf89cb12e3be070d304e87018cfff9
1 // CS8149: By-reference returns can only be used in methods that return by reference
2 // Line: 10
4 class A
6 int p;
8 int Test ()
10 return ref p;