Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1620-3.cs
1 // CS1620: Argument `#1' is missing `out' modifier
2 // Line: 24
3
4 using System;
5
6 namespace TestNamespace
7 {
8         public class Test
9         {
10                 public Test ()
11                 {
12                         int os;
13                         TestMethod (os);
14                         Console.WriteLine (os);
15                 }
16
17                 public void TestMethod (out int os)
18                 {
19                         os = 3;
20                 }
21         }
22 }
23