| Server IP : 93.127.173.111 / Your IP : 216.73.217.88 Web Server : LiteSpeed System : Linux in-mum-web1677.main-hosting.eu 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : u635632881 ( 635632881) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/golang/1.22.0/test/fixedbugs/ |
Upload File : |
// errorcheck
// Copyright 2014 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.
// Issue 6671: Logical operators should produce untyped bool for untyped operands.
package p
type mybool bool
func _(x, y int) {
type mybool bool
var b mybool
_ = b
b = bool(true) // ERROR "cannot use"
b = true // permitted as expected
b = bool(true) && true // ERROR "cannot use"
b = true && true // permitted => && returns an untyped bool
b = x < y // permitted => x < y returns an untyped bool
b = true && x < y // permitted => result of && returns untyped bool
b = x < y && x < y // permitted => result of && returns untyped bool
b = x < y || x < y // permitted => result of || returns untyped bool
var c bool = true && x < y // permitted => result of && is bool
c = false || x < y // permitted => result of || returns untyped bool
_ = c
}