Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
publishedApi
/
genericFunction.kt
blob: ece5ab0dbf9a3ff345ff3978c43562442ee9d0f5 [
file
] [
log
] [
blame
]
// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
annotation
class
Z
open
class
ABase
{
@Z
protected
fun
<
T
>
test
(
p
:
T
):
T
{
null
!!
}
inline
fun test
()
{
{
//TODO remove generic
<caret>
test
<
String
>(
"123"
)
}()
}
}