Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
objects
/
nestedClassInAnonymousObject.kt
blob: bf6a6d54f3d4ce66a0abd188d55f4e5ca47a0bf5 [
file
]
class
X
{
val foo
=
object
{
<!
NESTED_CLASS_NOT_ALLOWED
!>
class
Foo
<!>
}
fun test
()
{
object
{
<!
NESTED_CLASS_NOT_ALLOWED
!>
class
Foo
<!>
}
}
}