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

gtest-182.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0adb189b82330bcb480990a889c6e706d5f1f034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
interface IMember {
  int GetId ();
}

interface IMethod : IMember { }

class C1 : IMethod
{
  public int GetId () { return 42; }
}

class X {
    static void foo<a> (a e )
      where a : IMember
    {
      e.GetId ();
    }

  public static void Main ()
  {
    foo<IMethod> (new C1 ());
  }
}