Files
deep_go/lessons/generics_and_reflection/generics_with_constants/main.go

11 lines
143 B
Go
Raw Normal View History

package main
func process1[T int]() {
const value T = 5 // compilation error
}
func process2[T int]() {
var value T = 5 // ok
_ = value
}