Source file
test/fixedbugs/issue18661.go
1
2
3
4
5
6
7 package main
8
9 import (
10 "fmt"
11 "os"
12 )
13
14 var (
15 e interface{}
16 s = struct{ a *int }{}
17 b = e == s
18 )
19
20 func test(obj interface{}) {
21 if obj != struct{ a *string }{} {
22 }
23 }
24
25 var x int
26
27 func f() [2]string {
28 x++
29 return [2]string{"abc", "def"}
30 }
31
32 func main() {
33 var e interface{} = [2]string{"abc", "def"}
34 _ = e == f()
35 if x != 1 {
36 fmt.Println("x=", x)
37 os.Exit(1)
38 }
39 }
40
View as plain text