adec89f74d
Use DescriptorRenderer.TEXT instead, it doesn't print the debug information
9 lines
166 B
Kotlin
9 lines
166 B
Kotlin
// !DIAGNOSTICS_NUMBER: 1
|
|
// !DIAGNOSTICS: EXTENSION_IN_CLASS_REFERENCE_NOT_ALLOWED
|
|
|
|
class extensionInClassReference {
|
|
fun Int.foo() {}
|
|
|
|
val bar = Int::foo
|
|
}
|