| // 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 */ |