Merge pull request #4931 from kumpera/com-interop-fix
[mono.git] / mcs / tests / gtest-434-lib.cs
1 // Compiler options: -target:library
2
3 namespace testcase
4 {
5         public interface IInitializationExpression
6         {
7                 void AddRegistry<T> (int i);
8         }
9
10         public class ConfigurationExpression
11         {
12                 public void AddRegistry<T> (int i)
13                 {
14                 }
15         }
16 }