Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

24 lines
274 B
C#

// CS1620: Argument `#1' is missing `out' modifier
// Line: 24
using System;
namespace TestNamespace
{
public class Test
{
public Test ()
{
int os;
TestMethod (os);
Console.WriteLine (os);
}
public void TestMethod (out int os)
{
os = 3;
}
}
}