-
Notifications
You must be signed in to change notification settings - Fork 563
Closed
1 / 11 of 1 issue completedMilestone
Description
We cannot initialize classfile variables yet. The following code is incorrect:
var (
name1 V1 = initExpr1
name2 V2 = initExpr2
)We may have to use the following code as a workaround.
var (
name1 V1
name2 V2
)
name1 = initExpr1
name2 = initExpr2Let's stop this workaround and officially support the initialization of classfile variables.
Reactions are currently unavailable