daemon fix
diff --git a/core/compiler.common/src/org/jetbrains/kotlin/incremental/components/InlineConstTracker.kt b/core/compiler.common/src/org/jetbrains/kotlin/incremental/components/InlineConstTracker.kt
index 6d72633..0766655 100644
--- a/core/compiler.common/src/org/jetbrains/kotlin/incremental/components/InlineConstTracker.kt
+++ b/core/compiler.common/src/org/jetbrains/kotlin/incremental/components/InlineConstTracker.kt
@@ -1,6 +1,7 @@
 package org.jetbrains.kotlin.incremental.components
 
 import org.jetbrains.kotlin.container.DefaultImplementation
+import java.io.Serializable
 
 @DefaultImplementation(InlineConstTracker.DoNothing::class)
 interface InlineConstTracker {
@@ -12,4 +13,4 @@
     }
 }
 
-data class ConstantRef(var owner: String, var name: String, var constType: String)
+data class ConstantRef(var owner: String, var name: String, var constType: String) : Serializable