[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0192-2.cs
blob649a7079c1eb276e1fe94585b925b0e07d115175
1 // CS0192: A readonly field `A.a' cannot be passed ref or out (except in a constructor)
2 // Line: 15
4 class A
6 public readonly int a;
8 public void Inc (out int a)
10 a = 3;
13 public void IncCall ()
15 Inc (out a);