7 lines
89 B
Go
7 lines
89 B
Go
package main
|
|
|
|
func getErr() error { return nil }
|
|
|
|
func test() error {
|
|
err := getErr()
|
|
}
|