Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-405.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 926a7fdf7e613363c56122d219e6845c77df08da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Compiler options: -unsafe

using System;

namespace testapp{
        public unsafe class LibTestAPI{

                struct LibTestStruct{
                        void* pData;
                        void* pTest1;
                }

                LibTestStruct* the_struct;

                public void Create(){
                        IntPtr MyPtr = new IntPtr(0); // Usually created elsewhere
                        the_struct = (LibTestStruct *) 0;  // error CS1002
                }
        }

        class TestApp{
                static void Main(string[] args){
                        LibTestAPI myapi = new LibTestAPI();
                        myapi.Create();
                }
        }
}