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

gen-dotted-name.il « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfc8a9cce1735d4c4b83adac6a82f2cfcbc26bab (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
//Test for dotted-name for a generic type

.assembly extern mscorlib
{
  .ver 2:0:0:0
}
.assembly 'dottedname'
{
}

.module dottedname.dll

  .class private auto ansi beforefieldinit ns.gen`1<T>
  	extends [mscorlib]System.Object
  {

  }

  .class private auto ansi beforefieldinit test
  	extends [mscorlib]System.Object
  {
    .field  private   class ns.gen`1<int32> g

  }