just noticed that both android studio and idea (both latest versions) are not autocompleting IntDef’s (and probably other support annotations), i.e. when creating a Toast:
in Java autocomplete works: `Toast.makeText(this, “test",
cursor).show();`and autocompletes with
Toast.LENGTH_LONG
or
Toast.LENGTH_SHORT
in Kotlin autocomplete comes with a list of ints and neither makes any sense.
is it a bug, or a feature not yet implemented?