1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Compiler options: -target:library namespace testcase { public interface IInitializationExpression { void AddRegistry<T> (int i); } public class ConfigurationExpression { public void AddRegistry<T> (int i) { } } }