Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
deprecatedCallableAddReplaceWith
/
DeprecationLevelHidden.kt
blob: dbaf1d2c5072476efd46b880021b318b36cfb66d [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
<caret>
@Deprecated
(
"Use the other version"
,
level
=
DeprecationLevel
.
HIDDEN
)
fun foo
(
a
:
Int
)
{
foo
(
a
)
}
fun foo
(
a
:
Int
,
b
:
Int
=
0
)
{
...
}