Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inline
/
notInlinableWithLabel.fir.kt
blob: 88d197484497c3e70b072a10d50a749ef6f275ac [
file
]
// ISSUE: KT-65319
fun noInline
(
x
:
()
->
Unit
)
{
x
.
hashCode
()
}
inline
fun bar
(
s
:
()
->
Unit
)
{
noInline
(
l1@
<!
USAGE_IS_NOT_INLINABLE
!>
s
<!>)
}
fun main
()
{
bar
{
}
}