blob: b124ee9c8adc131bdd8cccab586d7baac1872e9b [file] [log] [blame]
// 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.
package com.android.tools.r8.rewrite.staticvalues.inlibraries;
public class LibraryClass {
public static int x = 1;
static int getX() {
return x;
}
}