[w32handle] Stop returning 0 in every cases for locking/unlocking (#3926)
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / MultipleReferences / Program.cs
1 using System;
2
3 public class Program {
4
5         public static int Main ()
6         {
7                 Program p = new Program ();
8                 p.Run ();
9
10                 return 0;
11         }
12
13         void Run ()
14         {
15                 Foo f = new Foo (new Bar ());
16                 f.UseBar ();
17
18                 Baz b = new Baz ();
19                 b.Chain (f);
20         }
21 }