Repeating constant with same value

If multiple constants have same value.

1
2
3
4
	const (
		min int = 1
		max int = 1
	)

Then the constant declaration can be simplified as below:

1
2
3
4
5
6
	// constants repeat the previous type and expression
	const (
		min int = 1
		max     // int = 1
	)
}