// FIX: none // WITH_RUNTIME fun main() { val o = Foo("") o.copy(prop = "New") bar(o) } data class Foo(val prop: String) fun bar(foo: Foo) {}