[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-26.cs
blob9fb47abf6d486d9ba4d78811a9d0e68f420f3d13
1 // CS0029: Cannot implicitly convert type `B [cs0029-26, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null -- *PATH*/cs0029-26.cs]' to `B [CS0029-26-lib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=36f3ae7e947792e3 -- *PATH*/CS0029-26-lib.dll]'
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;