Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a3bd913178484b16f03ec39baf7b0238e833a364
/
.
/
plugins
/
compose
/
compiler-hosted
/
testData
/
codegen
/
classContainingInlineFunction.kt
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!!!!!!!"
}
}