[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0029-26.cs
blob723b603c5f26ed85bd85dcfc73f9826ccc440817
1 // CS0029: Cannot implicitly convert type `B [cs0029-26, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]' to `B [CS0029-26-lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=36f3ae7e947792e3]'
2 // Line: 16
3 // Compiler options: -r:R1=CS0029-26-lib.dll
5 extern alias R1;
7 public class B
11 public class C
13 public static void Main ()
15 B b1 = null;
16 R1::B b2 = b1;