blob: 5a0ce5e3de8304666c982aaf6ef96708ef69ce7b [file]
// ORIGINAL: /compiler/testData/diagnostics/tests/callableReference/unsupported/classLiteralsWithEmptyLHS.fir.kt
// WITH_STDLIB
fun regular() {
::class
with(Any()) {
::class
}
}
fun Any.extension() {
::class
}
class A {
fun member() {
::class
}
}
fun box() = "OK"