summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-532-lib.cs
blob: 2f3db357b1f4d2c420115a0f61d3945ec96c3702 (plain)
1
2
3
4
5
6
7
// Compiler options: -t:library

public interface IServicesContainer
{
	void Register<I, T> () where T : I;
	void Register<I> (object instance);
}