Sign in
go
/
go
/
03d6e3722aea380a826de304dfedb7b30d7482e5
/
.
/
src
/
cmd
/
go
/
testdata
/
standalone_fail_sub_test.go
blob: ac483f9e0c4341bfc42c9bf6c1948fa860ed4a21 [
file
] [
log
] [
blame
]
package standalone_fail_sub_test
import "testing"
func TestThatFails(t *testing.T) {
t.Run("Sub", func(t *testing.T) {})
t.Fail()
}