[mcs] Don't do constraints on fabricated generic methods. Fixes #47672
[mono.git] / mcs / tests / test-938.cs
1 namespace Example
2 {
3         public class A : A.InnerInterface
4         {
5                 public interface InnerInterface
6                 {
7                 }
8
9                 public static void Main ()
10                 {
11                 } 
12         }
13 }