summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-434-lib.cs
blob: db47f82a496efc249876b3cb0babf293f6c91d1f (plain)
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)
		{
		}
	}
}