Skip to content

Instantly share code, notes, and snippets.

interface Base{
fun foo()
}
class BI : Base{
override fun foo() {
}
}
@Chickinnick
Chickinnick / MainActivity.java
Created February 6, 2018 10:59
Compile ProcessException in Desugar
//compiled successfully
MutableLiveData<BaseProduct> mutableLiveData = new MutableLiveData<>();
mutableLiveData.observe(this, new Observer<BaseProduct>() {
@Override
public void onChanged(@Nullable BaseProduct baseProduct) {
}
});