Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
classfileWithoutConstructors
/
shouldNotCompile.kt
blob: 0ecc94f7a861121b0c35b83b4a91549c2fab22c5 [
file
]
package
test
public
class
B
{
public
fun test
():
String
{
TopLevelKt
()
// error here
return
TopLevelKt
.
foo
(
"OK"
)
// no error here: can still call static functions
}
}