blob: 7985cd2ab2728dfbb7311e6e96069b62f4b86792 [file] [log] [blame]
# Tests Issue #21895
[!msan] [!race] skip 'skipping because both msan and the race detector are not supported'
env CGO_ENABLED=0
[race] ! go install -race triv.go
[race] stderr '-race requires cgo'
[race] ! stderr '-msan'
[msan] ! go install -msan triv.go
[msan] stderr '-msan requires cgo'
[msan] ! stderr '-race'
-- triv.go --
package main
func main() {}