blob: 5f25379d02ed8ef65b1dffcd0456de1dd52a80b1 [file] [log] [blame]
// WITH_RUNTIME
data class Foo(val id: Int, val name: String)
fun test() {
listOf(Foo(123, "def"), Foo(456, "abc"))<caret>
}