Files
kotlin-fork/compiler/util-klib-abi/testData/content/excluded_classes_3.kt
T
Dmitriy Dolovov 5171d92fb9 [KLIB] API for dumping KLIB ABI
^KT-54402
2023-07-28 09:52:18 +00:00

17 lines
277 B
Kotlin
Vendored

// EXCLUDED_CLASSES: one.two/Foo three.four/Bar /Foo /Bar.Nested /Baz.Nested.Nested five.six/Baz
class Foo {
class Nested {
class Nested
}
}
class Bar {
class Nested {
class Nested
}
}
class Baz {
class Nested {
class Nested
}
}