1d4a64d5e0253339c8ff36e05f6e488394f58762
[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 }