Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}
}