Merged changes in master libmonoruntime into PR.
[mono.git] / mcs / errors / cs1701.cs
1 // CS1701: Assuming assembly reference `CS1701-lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=36f3ae7e947792e3' matches assembly `CS1701-lib, Version=2.0.1.0, Culture=neutral, PublicKeyToken=36f3ae7e947792e3'. You may need to supply runtime policy
2 // Line: 0
3 // Compiler options: -warnaserror -r:CS1701-lib.dll -r:dlls/second/CS1701-lib.dll
4
5 class C
6 {
7         public static void Main ()
8         {
9                 A.Test (new B ());
10         }
11 }