Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
cli
/
js
/
compilationWarningPublicAccessorExplicitAPIMode.kt
blob: 2a50ebf024623da5a8b276762f176e87bb9b35de [
file
]
public
class
Outer
{
public
fun foo
():
String
=
"foo"
public
inner
class
Inner
{
@Suppress
(
"NOTHING_TO_INLINE"
)
public
inline
fun inlineFoo
():
String
=
foo
()
}
}