You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertFalse(SERIALIZERS_CACHE.isStored(Target2::class), "Cache shouldn't have values before call to serializer<T>()")
73
+
val ser2 = indirect<Target2>()
74
+
assertFalse(
75
+
SERIALIZERS_CACHE.isStored(Target2::class),
76
+
"Serializer for Target2::class is stored in the cache, which means that runtime lookup was performed and call to serializer<Target2> was not intrinsified."+
77
+
"Check that compiler plugin intrinsics are enabled and working correctly."
0 commit comments