Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionFunctions
/
extensionFunctionLocal.kt
blob: 7b8fe509feb1e1d703aff4b9d8f9bd6afc722591 [
file
]
fun foo
():
String
{
class
Local
fun
Local
.
bar
():
String
{
return
"O"
}
class
Local2
<
T
>
fun
Local2
<
String
>.
bar
():
String
{
return
"K"
}
return
Local
().
bar
()
+
Local2
<
String
>().
bar
()
}
fun box
():
String
=
foo
()