blob: edca5c120160894003e2ffb45fd11445e3767f60 [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;
class OuterImpl extends OuterAbstract {
public static void register(String[] args) {
OuterAbstract.setsInstance(new OuterImpl());
}
private OuterImpl() {}
@Override
public void theMethod() {}
}