* chore: setup mini.test * chore(ci): setup new test runner, install plugin deps * chore(ci): test only on stable and nightly releases * test: iferr * test: struct_tags * test: impl * test: gotests
8 lines
148 B
Go
8 lines
148 B
Go
package main
|
|
|
|
type WriterTest2 struct{}
|
|
|
|
func (w *WriterTest2) Write(p []byte) (n int, err error) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|