summaryrefslogtreecommitdiff
path: root/Tests/CSharpOnly/csharponly.cs
blob: 3890c823cf4628198c0bc5130fa5efc74768672d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace CSharpOnly
{
    class CSharpOnly
    {
        public static void Main(string[] args)
        {
            int val = Lib1.getResult();
            Lib2 l = new Lib2();
            val = val +  l.myVal + nested.Lib1.getResult();
            return;
        }
    }
}