Files
kotlin-fork/compiler/testData/diagnostics/tests/multimodule/varargConflict.txt
T
Alexander Udalov c1eebacd55 Do not render declarations from other modules in diagnostic tests
Because PackageViewDescriptor may consist of several package fragments from
different modules (see LazyPackageViewDescriptorImpl#fragments), we now filter
out fragments from irrelevant modules before rendering them into the .txt
2016-11-25 20:50:21 +03:00

28 lines
465 B
Plaintext
Vendored

// -- Module: <m1> --
package
package p {
public fun foo(/*0*/ a: kotlin.Int): kotlin.Unit
public fun foo(/*0*/ vararg values: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
}
// -- Module: <m2> --
package
package p {
public fun foo(/*0*/ a: kotlin.Int): kotlin.Unit
public fun foo(/*0*/ vararg values: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
}
// -- Module: <m3> --
package
package m {
public fun main(): kotlin.Unit
}
package p {
}