Skip to content

Commit e9b3c2a

Browse files
committed
tests: add go1.24 test
1 parent 0b862b7 commit e9b3c2a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//go:build go1.24
2+
3+
//golangcitest:args -Egci
4+
//golangcitest:expected_exitcode 0
5+
package testdata
6+
7+
import (
8+
"crypto/sha3"
9+
"errors"
10+
"fmt"
11+
)
12+
13+
func _() {
14+
fmt.Print(errors.New("x"))
15+
sha3.New224()
16+
}

0 commit comments

Comments
 (0)