9 lines
80 B
Go
9 lines
80 B
Go
package main
|
|
|
|
func test() error {
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
err := test()
|
|
}
|