**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs1510-2.cs
blob888d5079d06604d2a4b8773f378bf9b482845773
1 // cs1510-2.cs: an lvalue is required for ref or out argument
2 // Line: 14
3 // this is bug #56016
5 using System;
7 class Test {
8 static void test(ref IConvertible i) {
11 static void Main() {
12 int i = 1;
14 test (ref (IConvertible) i);