blob: be1c42c36041f872e3f2b2f045637beb44b1c63d [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
@PublishedApi
internal interface History<T> {
var isIgnoringPlatformChanges: Boolean
}
@PublishedApi
internal class VirtueNavControllerImpl<R>(
@PublishedApi internal val history: History<R>
) {
@PublishedApi
internal <!NOTHING_TO_INLINE!>inline<!> fun syncWithHistory() {
history.isIgnoringPlatformChanges = true
}
}
/* GENERATED_FIR_TAGS: assignment, classDeclaration, functionDeclaration, inline, interfaceDeclaration, nullableType,
primaryConstructor, propertyDeclaration, typeParameter */