Closed beether closed 6 years ago
With: var (,b) = someFuncThatReturnsTwoValues()
var (,b) = someFuncThatReturnsTwoValues()
It returns Expected identifier but " " found.
Expected identifier but " " found.
This is valid syntax.
This happens to me as well, but like this:
Parse:
var (, , , , , sharePrice) = performCalculations();
Error:
Expected identifier but "," found
With:
var (,b) = someFuncThatReturnsTwoValues()
It returns
Expected identifier but " " found.
This is valid syntax.