dlr bug
[mcs.git] / tests / gtest-395.cs
blob29a061018f97cc8818d9767d3596224c16a16639
1 public class RuleBuilder<T> where T : class {}
3 public interface IDynamicObject {
4 RuleBuilder<T> GetRule<T>() where T : class;
7 public class RubyMethod : IDynamicObject {
8 RuleBuilder<T> IDynamicObject.GetRule<T>() /* where T : class */ {
9 return new RuleBuilder<T>();
13 public class T {
14 static void Main ()