[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1605.cs
1 // CS1605: Cannot pass `this' as a ref or out argument because it is read-only
2 // Line: 13
3
4 class X
5 {
6         void Test (out X x)
7         {
8                 x = null;
9         }
10         
11         void Run ()
12         {
13                 Test (out this);
14         }
15 }