Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs0029-29.cs
blobfcb4e8977c6ff9c289e5827368f953555ad5d305
1 // CS0019: Cannot implicitly convert type `dynamic' to `int*'
2 // Line: 10
3 // Compiler options: -unsafe
5 public unsafe class C
7 public static void Main ()
9 dynamic d = 1;
10 int* i = d;