forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.TestStructs.il
More file actions
70 lines (58 loc) · 1.7 KB
/
System.TestStructs.il
File metadata and controls
70 lines (58 loc) · 1.7 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
.assembly extern System.Runtime
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A)
.ver 4:0:0:0
}
.assembly System.TestStructs
{
.ver 1:0:0:0
}
.module System.TestStructs.dll
.namespace System.Tests
{
.class public sequential sealed StructWithDefaultConstructor
extends [System.Runtime]System.ValueType
{
.size 1
}
.class public sequential sealed StructWithPublicDefaultConstructor
extends [System.Runtime]System.ValueType
{
.field public initonly bool ConstructorInvoked
.method public hidebysig specialname rtspecialname instance void .ctor () cil managed
{
ldarg.0
ldc.i4.1
stfld bool System.Tests.StructWithPublicDefaultConstructor::ConstructorInvoked
ret
}
}
.class public sequential sealed StructWithPrivateDefaultConstructor
extends [System.Runtime]System.ValueType
{
.size 1
.method private hidebysig specialname rtspecialname instance void .ctor () cil managed
{
ret
}
}
.class public sequential sealed StructWithoutDefaultConstructor
extends [System.Runtime]System.ValueType
{
.size 1
.method public hidebysig specialname rtspecialname instance void .ctor (int32 v) cil managed
{
ret
}
}
}
.class public sequential sealed '.GlobalStructStartingWithDot'
extends [System.Runtime]System.ValueType
{
}
.class public sequential sealed ' GlobalStructStartingWithSpace'
extends [System.Runtime]System.ValueType
{
}