Copied remotely
[mono.git] / mcs / errors / cs1502.cs
1 // cs1502.cs: The method has incorrect arguments, passing out to something expecting ref
2 // Line: 8
3 class X {
4         public void foo (ref int blah) {}
5
6         public void bar (ref int baz)
7         {
8                 foo(out baz);
9         }
10
11         static void Main ()
12         {
13         }
14 }