Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
methodCallExpression
/
defaultParamsWithVararg.java
blob: 8f7772c02e896167adbc7776e47268c9aa6e1bb8 [
file
] [
log
] [
blame
]
public
final
class
Test
{
public
static
void
checkState
(
boolean
condition
,
String
message
,
Object
...
args
)
{
}
public
static
void
checkState
(
boolean
condition
)
{
checkState
(
condition
,
"condition not met"
);
}
}