2016-05-30 17:42:38 -06:00
|
|
|
// 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 p
|
|
|
|
|
|
|
|
func f(e interface{}) {
|
|
|
|
switch e.(type) {
|
2020-12-08 23:01:22 -07:00
|
|
|
case nil, nil: // ERROR "multiple nil cases in type switch|duplicate case nil in type switch"
|
2016-05-30 17:42:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch e.(type) {
|
|
|
|
case nil:
|
2020-12-08 23:01:22 -07:00
|
|
|
case nil: // ERROR "multiple nil cases in type switch|duplicate case nil in type switch"
|
2016-05-30 17:42:38 -06:00
|
|
|
}
|
|
|
|
}
|