Files
kotlin-fork/compiler/util-klib-abi/testData/content/excluded_classes_3.kt
T
2023-07-31 20:22:20 +00:00

18 lines
313 B
Kotlin
Vendored

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