blob: a1d95ef2b1d8ea12d1fc415f7208de3dd9a2cf5f [file] [log] [blame]
Jinseong Jeonefa78e12017-10-16 15:04:24 -07001// 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.
4package adaptclassstrings;
5
6public 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}