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

gtest-224.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b576ced50ef8978bd884c5fa283d4864a083c5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Base
{
        public virtual void Foo<T> () {}
}

class Derived : Base
{
        public override void Foo <T> () {}
}

class Driver
{
        public static void Main ()
        {
                new Derived ().Foo<int> ();
        }
}