[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1070-3.cs
1 // CS1070: The type `C' has been forwarded to an assembly that is not referenced. Consider adding a reference to assembly `CS1070-lib-missing, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'
2 // Line: 5
3 // Compiler options: -r:CS1070-lib.dll
4
5 public class D
6 {
7         static void Main ()
8         {
9                 new C ();
10         }
11 }