add explicit type for LookupTracker.DO_NOTHING in order to avoid compilation error due KT-9072

This commit is contained in:
Michael Nedzelsky
2015-09-05 16:11:18 +03:00
parent 7b41106724
commit a3f22939f1
@@ -31,7 +31,7 @@ public interface LookupTracker {
)
companion object {
val DO_NOTHING = object : LookupTracker {
val DO_NOTHING: LookupTracker = object : LookupTracker {
override fun record(
lookupContainingFile: String,
lookupLine: Int?,