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

error-label-a.il « errors « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b3aa4b3a55ae7f741fb4df274f7a570ab30b1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

.assembly extern mscorlib { }
.assembly 'error-label-a' { }

.class public T {

       .method public static void main ()
       {
                .entrypoint

                ldc.i4.1
                brfalse label_no_exist

                ret
       }

}