blob: ce57e8078a6092497dd7eca38caaedc1e195cc9f [file]
// DUMP_IR
// MODULE: main
// FILE: main.kt
package com.example.myModule
class OtherModule {
inline fun giveMeString() : String {
return secret()
}
@PublishedApi
internal fun secret() : String {
return "what is up!!!!!!!"
}
}