dcb84a7d0a
It's needed to prevent usages of them as real annotation/type. But we can't remove them, because currently some modifiers are artificially resolved as annotations of those classes.
6 lines
128 B
Plaintext
Vendored
6 lines
128 B
Plaintext
Vendored
>>> data class Person(val name: String)
|
|
>>> var x: String? = "hello"
|
|
>>> val y = x?.let { Person(it) }
|
|
>>> y
|
|
Person(name=hello)
|