From ccd992355df7192993c666236047820244914598 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:19:13 +0200 Subject: Adding upstream version 1.21.8. Signed-off-by: Daniel Baumann --- test/named1.go | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 test/named1.go (limited to 'test/named1.go') diff --git a/test/named1.go b/test/named1.go new file mode 100644 index 0000000..452c6da --- /dev/null +++ b/test/named1.go @@ -0,0 +1,62 @@ +// errorcheck + +// Copyright 2009 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. + +// Test that basic operations on named types are valid +// and preserve the type. +// Does not compile. + +package main + +type Bool bool + +type Map map[int]int + +func (Map) M() {} + +type Slice []byte + +var slice Slice + +func asBool(Bool) {} +func asString(String) {} + +type String string + +func main() { + var ( + b Bool = true + i, j int + c = make(chan int) + m = make(Map) + ) + + asBool(b) + asBool(!b) + asBool(true) + asBool(*&b) + asBool(Bool(true)) + asBool(1 != 2) // ok now + asBool(i < j) // ok now + + _, b = m[2] // ok now + + var inter interface{} + _, b = inter.(Map) // ok now + _ = b + + var minter interface { + M() + } + _, b = minter.(Map) // ok now + _ = b + + _, bb := <-c + asBool(bb) // ERROR "cannot use.*type bool.*as type Bool|cannot use bb" + _, b = <-c // ok now + _ = b + + asString(String(slice)) // ok +} -- cgit v1.2.3