[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs8161.cs
blob0d028a116ed294bd8a2810048978e8eb435e3d99
1 // CS8161: A static readonly field cannot be returned by reference
2 // Line: 10
4 class X
6 static readonly int f;
8 static ref int Test ()
10 return ref f;