Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-532.cs
blobc42cc4578d674d43f6d70b442bd775a1ca6dabb2
1 // Compiler options: -r:gtest-532-lib.dll
3 using System;
5 public class DictionaryServicesContainer : IServicesContainer
7 public void Register<I, T> () where T : I
9 throw new NotImplementedException ();
12 public void Register<I> (object instance)
14 throw new NotImplementedException ();
17 public I Resolve<I> ()
19 throw new NotImplementedException ();
22 public static void Main ()
24 new DictionaryServicesContainer ();