CLOVIS
07/19/2024, 4:20 PMdata class Foo(
val a: Int,
)
data class Bar(
val foo: Foo,
)
Bar(
// Cursor here
)
In K1 mode, "Code completion → Type matching" proposes to write Foo(…)
In K2 mode, it says "no suggestions"dmitriy.novozhilov
07/20/2024, 6:36 AMRoman Golyshev
07/22/2024, 9:14 AM