1 package leakcanary
2 
interfacenull3 fun interface ReachabilityWatcher {
4 
5   /**
6    * Expects the provided [watchedObject] to become weakly reachable soon. If not,
7    * [watchedObject] will be considered retained.
8    */
9   fun expectWeaklyReachable(
10     watchedObject: Any,
11     description: String
12   )
13 }