Files
Dmitry Avdeev 25c2402bea IJP-1077 Inlay hints: new settings UI
more previews

GitOrigin-RevId: 2b11574f5a36a96077ecaaf797f450d164bc967a
2021-09-30 16:47:17 +00:00

9 lines
147 B
Java

class Button { }
class AnimatedButton extends Button { }
class UI {
public static void main(String[] args) {
Button b = new Button();
}
}