1 package foo;
2 
3 import static androidx.lifecycle.Lifecycle.Event.ON_START;
4 
5 import androidx.lifecycle.Lifecycle.Event;
6 import androidx.lifecycle.OnLifecycleEvent;
7 
8 public class DerivedFromJar extends test.library.LibraryBaseObserver {
9     @OnLifecycleEvent(ON_START)
doAnother()10     public void doAnother() {
11     }
12 }
13