Also fix error ouptut in the run command to avoid displaying twice the same error. Fixes #819.
11 lines
123 B
Go
11 lines
123 B
Go
package main
|
|
|
|
func f(x int) { return x }
|
|
|
|
func main() {
|
|
print("hello")
|
|
}
|
|
|
|
// Error:
|
|
// 3:17: too many arguments to return
|