[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / tests / gtest-532.cs
1 // Compiler options: -r:gtest-532-lib.dll
2
3 using System;
4
5 public class DictionaryServicesContainer : IServicesContainer
6 {
7         public void Register<I, T> () where T : I
8         {
9                 throw new NotImplementedException ();
10         }
11
12         public void Register<I> (object instance)
13         {
14                 throw new NotImplementedException ();
15         }
16
17         public I Resolve<I> ()
18         {
19                 throw new NotImplementedException ();
20         }
21
22         public static void Main ()
23         {
24                 new DictionaryServicesContainer ();
25         }
26 }