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

test-var-08.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bf591a63987117f8f13921382283c8282e8ff22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


using System;

class X
{
        int var;

        public X (int var, int i)
        {
                var = i;
        }

        public static void Main ()
        {
        }
}