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

test-marshal.il « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2325c4b8fbff640f9385dbfcf72576b093245099 (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
29
30
31
32
33
34
35
36
37
.assembly extern mscorlib
{
}
.assembly 'test-marshal'
{
}


  .class private auto ansi beforefieldinit test
  	extends [mscorlib]System.Object
  {
    .field  private  marshal (int32[]) int32 a

    .method private hidebysig 
           instance default void marshal (as any) xyz ()  cil managed 
    {
	.maxstack 8
	IL_0000:  ret 
    }

    .method private hidebysig 
           instance default object marshal (interface) abc (class test 'assembly', string marshal (bool) str, string str2, int32 i4)  cil managed 
    {
	.maxstack 8
	IL_0000:  ldnull 
	IL_0001:  ret 
    }

    .method private hidebysig 
           instance default void marshal (as any) def (class test 'assembly', string str, string str2, int32 marshal (bool) i4)  cil managed 
    {
	.maxstack 8
	IL_0000:  ret 
    }

  }