Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Program.cs « Simple « Linker « TestCases « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e5c67e5813b3b22e69b7cbe8196728fe5663f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace TestCases.Linker.Simple
{
	public class Program
	{
		[Mark]
		public static int Test ()
		{
			Program p = new Program ();
			return p.Run ();
		}

		int Run ()
		{
			Library lib = new Library ();
			return lib.Hello ();
		}
	}
}