diff --git a/10-constants/04-iota/04-blank-identifier/02/main.go b/10-constants/04-iota/04-blank-identifier/02/main.go index 28adc33..ffd5f61 100644 --- a/10-constants/04-iota/04-blank-identifier/02/main.go +++ b/10-constants/04-iota/04-blank-identifier/02/main.go @@ -13,8 +13,8 @@ import "fmt" func main() { const ( EST = -(5 + iota) // CORRECT: -5 - MST // INCORRECT: -6 - PST // INCORRECT: -7 + MST // CORRECT: -6 + PST // CORRECT: -7 ) fmt.Println(EST, MST, PST)