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

test-299.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 292467dd2337a555f15b9fccb7184b3c1c8bbc41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// csc 1.x has a bug

class SampleClass
{
        public static SuperClass operator ++ (SampleClass value) {
                return new SuperClass();
        }
}

class SuperClass: SampleClass
{
        public static int Main ()
        {
            return 0;
        }
}