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

test-bounded-array.il « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64e7651a6df59129c90b51707d821d7052541f20 (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
//Test case for #76976
//uint8[0...] should not lose its lower-bound info

.assembly extern mscorlib
{
}
.assembly Output
{
  .ver 1:0:0:0
}
.module Output

.class private auto autochar beforefieldinit Test
       extends [mscorlib]System.Object
{
  .method public hidebysig static void  Main() cil managed
  {
    .entrypoint
    .maxstack 2 
    .locals init (uint8[8] V_0,
             int32 V_1)
    ldc.i4.8
    newobj     instance void uint8[0...]::.ctor(int32)
    pop
    ret
  }

}