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