aboutsummaryrefslogtreecommitdiff
path: root/testdata/const-method-type-min.smali
blob: 8a0f6325e72083c311988dee82b6d375678c788e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Tests const-method-type added in DEX version 39.

# Compile using smali: https://github.com/JesusFreke/smali
# java -jar smali.jar assemble const-method-type.smali --api 28

.class public LConstMethodTypeTest;
.super Ljava/lang/Object;

.method public test(I)V
    .registers 4
    const-method-type v0, ()I
    const-method-type v1, (C)V
    const-method-type v2, (I)V
    const-method-type v3, (I)I
    return-void
.end method