Skip to content

Commit

Permalink
oops. this is a bug in mcs
Browse files Browse the repository at this point in the history
svn path=/trunk/mono/; revision=11168
  • Loading branch information
gonzalop committed Feb 3, 2003
1 parent 96fb9d1 commit 3d026cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mono/tests/remoting3.cs
Expand Up @@ -102,7 +102,7 @@ class Test {
RemoteDelegate1 d1 = new RemoteDelegate1 (o.Add);

IAsyncResult ar = d1.BeginInvoke (2, out res, 3, null, null);
MyStruct myres = d1.EndInvoke (ar);
MyStruct myres = d1.EndInvoke (out res, ar);

Console.WriteLine ("Result: " + myres.a + " " +
myres.b + " " + myres.c + " " + res);
Expand Down

0 comments on commit 3d026cf

Please sign in to comment.