summaryrefslogtreecommitdiff
path: root/mcs/tests/test-416.cs
blob: 28f956d015ecd5cc56c1715d069a2e36108dade9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -addmodule:test-416-mod.netmodule

using n1;
using System;

public class ModTest
{
        
        public static void Main(string[] args)
        {
                Adder a=new Adder();
                Console.WriteLine(a.Add(2,3));
        }

}