mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 14:48:40 +00:00
8 lines
86 B
Go
8 lines
86 B
Go
package fail_test
|
|
|
|
import "testing"
|
|
|
|
func TestFail(t *testing.T) {
|
|
t.Error("fail")
|
|
}
|