for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1510-5.cs
blob3ab08babeb22f328b7ed6018e5e8318c2e0976b4
1 // CS1510: A ref or out argument must be an assignable variable
2 // Line: 9
4 class C
6 public static void Main ()
8 const char c = 'a';
9 Foo (ref c);
12 static void Foo(ref char i)