Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
fir
/
analysis-tests
/
testData
/
resolve
/
genericFunctions.kt
blob: b1978fe2dbbcdbc201e1d5c3a91439c2c75a2672 [
file
]
interface
Any
inline
fun
<
reified T
:
Any
>
Any
.
safeAs
():
T
?
=
this
as
?
T
abstract
class
Summator
{
abstract
fun
<
T
>
plus
(
first
:
T
,
second
:
T
):
T
}