aboutsummaryrefslogtreecommitdiff
path: root/src/test/proguard/valid/assume-values-with-return-value.flags
blob: 6877f10883e0f5eaa2ca613420a7814b867c135e (plain)
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.

-assumevalues class com.example.SomeClass {
    public static final boolean isTrue() return true;
    public static final boolean isFalse() return false;
    public static final int is1() return 1;
    public static final int is2To4() return 2..4;
    public static final int isField() return com.google.C.X;
}