mirror of
https://github.com/golang/go
synced 2024-11-06 00:36:14 -07:00
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
|
// errorcheck
|
||
|
|
||
|
// Copyright 2016 The Go Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package main
|
||
|
|
||
|
func foo() (int, int) {
|
||
|
return 2.3 // ERROR "not enough arguments to return, got \(number\) want \(int, int\)"
|
||
|
}
|
||
|
|
||
|
func foo2() {
|
||
|
return int(2), 2 // ERROR "too many arguments to return, got \(int, number\) want \(\)"
|
||
|
}
|
||
|
|
||
|
func foo3(v int) (a, b, c, d int) {
|
||
|
if v >= 0 {
|
||
|
return 1 // ERROR "not enough arguments to return, got \(number\) want \(int, int, int, int\)"
|
||
|
}
|
||
|
return 2, 3 // ERROR "not enough arguments to return, got \(number, number\) want \(int, int, int, int\)"
|
||
|
}
|
||
|
|
||
|
func foo4(name string) (string, int) {
|
||
|
switch name {
|
||
|
case "cow":
|
||
|
return "moo" // ERROR "not enough arguments to return, got \(string\) want \(string, int\)"
|
||
|
case "dog":
|
||
|
return "dog", 10, true // ERROR "too many arguments to return, got \(string, number, bool\) want \(string, int\)"
|
||
|
case "fish":
|
||
|
return "" // ERROR "not enough arguments to return, got \(string\) want \(string, int\)"
|
||
|
default:
|
||
|
return "lizard", 10
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type S int
|
||
|
type T string
|
||
|
type U float64
|
||
|
|
||
|
func foo5() (S, T, U) {
|
||
|
if false {
|
||
|
return "" // ERROR "not enough arguments to return, got \(string\) want \(S, T, U\)"
|
||
|
} else {
|
||
|
ptr := new(T)
|
||
|
return ptr // ERROR "not enough arguments to return, got \(\*T\) want \(S, T, U\)"
|
||
|
}
|
||
|
return new(S), 12.34, 1 + 0i, 'r', true // ERROR "too many arguments to return, got \(\*S, number, number, number, bool\) want \(S, T, U\)"
|
||
|
}
|
||
|
|
||
|
func foo6() (T, string) {
|
||
|
return "T", true, true // ERROR "too many arguments to return, got \(string, bool, bool\) want \(T, string\)"
|
||
|
}
|