summaryrefslogtreecommitdiff
path: root/test/bigalg.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/bigalg.go')
-rw-r--r--test/bigalg.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bigalg.go b/test/bigalg.go
index dba8cc4dd..89ece01b9 100644
--- a/test/bigalg.go
+++ b/test/bigalg.go
@@ -22,7 +22,6 @@ var a = []int{ 1, 2, 3 }
var NIL []int;
func arraycmptest() {
- a1 := a;
if NIL != nil {
println("fail1:", NIL, "!= nil");
}
@@ -112,6 +111,7 @@ func interfacetest() {
i = e;
e1 := i.(E);
// nothing to check; just verify it doesn't crash
+ _ = e1;
}
func main() {