Jinseong Jeon | efa78e1 | 2017-10-16 15:04:24 -0700 | [diff] [blame] | 1 | // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | package adaptclassstrings; |
| 5 | |
| 6 | public class A { |
| 7 | protected static final String ITSELF = "Ladaptclassstrings/A;"; |
| 8 | protected static final String OTHER = "adaptclassstrings.C"; |
| 9 | |
| 10 | protected int f; |
| 11 | |
| 12 | A(int f) { |
| 13 | this.f = f; |
| 14 | } |
| 15 | |
| 16 | protected int foo() { |
| 17 | return f * 9; |
| 18 | } |
| 19 | |
| 20 | void bar() { |
| 21 | System.out.println("adaptclassstrings.C"); |
| 22 | System.out.println("adaptclassstrings.D"); |
| 23 | } |
| 24 | } |