aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue40152.go
blob: 1cb68e99145140b1efd120486272c7b3e3d810c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// run

// Copyright 2020 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.

// Gccgo mishandles converting an untyped boolean to an interface type.

package main

func t(args ...interface{}) bool {
        x := true
        return x == args[0]
}

func main() {
	r := t("x" == "x" && "y" == "y")
	if !r {
		panic(r)
	}
}