[w32handle] Stop returning 0 in every cases for locking/unlocking (#3926)
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / VirtualCall / Program.cs
1 using System;
2
3 public class Program {
4
5         public static int Main ()
6         {
7                 Program p = new Program ();
8                 return p.Run ();
9         }
10
11         int Run ()
12         {
13                 Library lib = new PowerFulLibrary ();
14                 return lib.Shebang ();
15         }
16 }