mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
10 lines
138 B
Go
10 lines
138 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func testGood(t Timestamp) {
|
|
fmt.Printf("Before: %s\n", t)
|
|
t = t.addDays(7)
|
|
fmt.Printf("After: %s\n", t)
|
|
}
|