You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 20, 2021. It is now read-only.
Following initailization of a final variable to null the variable should be able to allow initialization once more to real value instead of throwing Cannot assign a value to the final variable error.
Example :
final variable = null
variable = true #throws an error, it should not
Following initailization of a final variable to null the variable should be able to allow initialization once more to real value instead of throwing
Cannot assign a value to the final variableerror.Example :