blob: 81c924b9b43be1b748960b280d46ca57d9d83224 [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.kotlin.metadata.libtype_lib_ext
import com.android.tools.r8.kotlin.metadata.libtype_lib_base.Base
import com.android.tools.r8.kotlin.metadata.libtype_lib_base.Sub
fun Sub.boo(): Base {
println("Sub::boo")
return this
}