Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs1070-2.cs
1 // CS1070: The type `N.E' 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: 9
3 // Compiler options: -r:CS1070-lib.dll
4
5 using N;
6
7 public class D
8 {
9         public void Foo (E e)
10         {
11         }
12 }