Source file test/typeparam/factimp.dir/a.go
1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package a 6 7 func Fact[T interface{ int | int64 | float64 }](n T) T { 8 if n == 1 { 9 return 1 10 } 11 return n * Fact(n-1) 12 } 13