summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug141.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug141.go')
-rw-r--r--test/fixedbugs/bug141.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug141.go b/test/fixedbugs/bug141.go
index 756ba308d..1b125e5d1 100644
--- a/test/fixedbugs/bug141.go
+++ b/test/fixedbugs/bug141.go
@@ -20,7 +20,7 @@ type Getter interface {
func f1(p Empty) {
switch x := p.(type) {
- default: println("failed to match interface"); os.Exit(1);
+ default: println("failed to match interface", x); os.Exit(1);
case Getter: break;
}