Collect local declarations under properties (KT-14215); improve presentation of object declarations
#KT-14215 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class C {
|
||||
val f = object : Runnable {
|
||||
fun run() { }
|
||||
|
||||
fun xyzzy() { }
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
val g = object : Runnable {
|
||||
fun run() { }
|
||||
|
||||
fun xyzzy() { }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user