for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1605-2.cs
blob738899bfe4f44ef15c18b96cfd930816fd01b349
1 // CS1605: Cannot pass `this' as a ref or out argument because it is read-only
2 // Line: 14
3 // Compiler options: -langversion:latest
5 readonly struct X
7 void Test (out X x)
9 x = new X ();
12 void Run ()
14 Test (out this);