[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs1510.cs
blobf6af92c1e2c8f87b738267a1e292b118d9cb126d
1 // CS1510: A ref or out argument must be an assignable variable
2 // Line: 11
3 class X {
4 public static void m (ref int i)
6 i++;
9 static void Main ()
11 m (ref 4);