Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/combineWithNoSelectorInfo.txt
T
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

14 lines
517 B
Plaintext

package
package foo {
internal fun dispatch(/*0*/ request: foo.Request): kotlin.Unit
internal trait Request {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
internal abstract fun getMethod(): kotlin.String?
internal abstract fun getRequestURI(): kotlin.String?
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}