blob: 0c5a0785d84bd1f53fd3f5ab086c45d7f0a22e73 [file] [log] [blame]
// Copyright (c) 2020, 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.regress.b158429654;
public abstract class OuterAbstract {
private static OuterAbstract sInstance;
public static OuterAbstract getInstance() {
return sInstance;
}
public static void setsInstance(OuterAbstract sInstance) {
OuterAbstract.sInstance = sInstance;
}
public abstract void theMethod();
}