d691ab61d7
The test data is used both in ":kotlin-util-klib-abi" and ":native:native.tests" modules. It's better to keep it together with the test data for other KLIB tests which are also used in more than one module, i.e. in "compiler/testData/klib/" dir.
18 lines
313 B
Kotlin
Vendored
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
|
|
}
|
|
} |