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

err-global.il « errors « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 911fd58f559f3e7a364ebea3ebfd5544efc17a82 (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
//Tests global field ref to a non-existant field

.assembly extern mscorlib
{
  .ver 2:0:0:0
}
.assembly 'err-global'
{
   .ver 0:0:0:0
}
.module 'err-global.dll'

.class private auto ansi beforefieldinit abc
       extends [mscorlib]System.Object
{
  .method public hidebysig specialname rtspecialname 
          instance void  .ctor() cil managed
  {
    .maxstack  8
    IL_0000:  ldarg.0
    IL_0001:  call       instance void [mscorlib]System.Object::.ctor()
    IL_0006:  ret
  }

  .method public hidebysig static void  bar() cil managed
  {
    .maxstack  8
    ldsfld int32 somefield	    
    pop
    ret
  }

}