Files
Dmitry Avdeev eb54bfca5b IJP-1077 Inlay hints: new settings UI
snippets & descriptions updated

GitOrigin-RevId: 111699b4da89302ca27e8ea67de9b9d043b8d4c2
2022-02-02 15:46:17 +00:00

15 lines
252 B
Java

class Test {
public static void main(String[] args) {
new Duckling("Franklin", Color.YELLOW);
}
}
class Duckling {
String name;
Color color;
public Duckling(String name, Color color) {
this.name = name;
this.color = color;
}
}