Files
goreportcard/check/testdata/testfiles/d.go
2022-03-26 16:56:37 +09:00

13 lines
121 B
Go

package testfiles
import (
"fmt"
"time"
)
func foo() {
a := time.Now()
b := a.Sub(time.Now())
fmt.Println(a, b)
}