Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-414.cs
1 using System;
2
3 namespace MonoTest
4 {
5         public class MainClass
6         {
7                 public static void Main ()
8                 {
9                 }
10         }
11
12         public interface ITest
13         {
14                 void Get<T> (object o);
15         }
16
17         public class TestImpl : ITest
18         {
19                 public void Get<T> ()
20                 {
21                 }
22                 
23                 public void Get<T> (object o)
24                 {
25                 }
26                 
27                 void ITest.Get<T> (object o)
28                 {
29                 }
30         }
31         
32         interface IG<T>
33         {
34                 void M ();
35         }
36         
37         class C : IG<int>, IG<string>
38         {
39                 void IG<int>.M ()
40                 {
41                 }
42                 
43                 void IG<string>.M ()
44                 {
45                 }
46         }
47 }
48