[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0266-2.cs
blob0542db3006e028de257fe8861cb14ab45def2e77
1 // CS0266: Cannot implicitly convert type `Helper*' to `Obsolete*'. An explicit conversion exists (are you missing a cast?)
2 // Line: 18
3 // Compiler options: -unsafe
5 class Box {
6 public Helper o;
9 unsafe struct Obsolete {
12 unsafe struct Helper {}
14 class MainClass {
15 unsafe public static void Main ()
17 Box b = new Box ();
18 fixed (Obsolete* p = &b.o)