blob: 30f01214508072c8664f269875b7a72e9dce4a7d [file]
// Copyright (c) 2022, 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.reflection
import kotlin.reflect.full.primaryConstructor
@JvmInline value class Value(private val rawValue: Int)
data class Data(val value: Value)
fun main() {
// See b/230369515 for context.
println(Data::class.primaryConstructor?.call(Value(0))?.value)
}