mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
162 B
Plaintext
Vendored
8 lines
162 B
Plaintext
Vendored
>>> fun foo() {
|
|
... object Bar {
|
|
... }
|
|
... }
|
|
error: named object 'Bar' is a singleton and cannot be local. Try to use anonymous object instead
|
|
object Bar {
|
|
^
|