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

19 lines
371 B
Kotlin
Vendored

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