Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
calls.kt
blob: c3c27c9f24908a74b81a369dcbbc1ef97c4348d0 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
fun foo
(
x
:
Int
,
y
:
Int
)
=
x
fun bar
(
x
:
Int
)
=
foo
(
x
,
1
)
fun qux
(
x
:
Int
)
=
foo
(
foo
(
x
,
x
),
x
)
fun
Int
.
ext1
()
=
this
fun
Int
.
ext2
(
x
:
Int
)
=
foo
(
this
,
x
)
fun
Int
.
ext3
(
x
:
Int
)
=
foo
(
ext1
(),
x
)