test(impl): add test

This commit is contained in:
Oleksandr Smirnov 2025-02-17 20:16:56 +02:00
parent 7a8fd2e273
commit 1203550399
No known key found for this signature in database
3 changed files with 25 additions and 0 deletions

8
spec/fixtures/impl/impl_output.go vendored Normal file
View file

@ -0,0 +1,8 @@
package main
type Tester2 struct{}
func (w *Tester2) Write(p []byte) (n int, err error) {
panic("not implemented") // TODO: Implement
}