]> Cypherpunks repositories - gostls13.git/commit
spec: clarify conditions for switch expression type
authorRobert Griesemer <gri@golang.org>
Wed, 28 Apr 2021 01:05:20 +0000 (18:05 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 28 Apr 2021 18:50:51 +0000 (18:50 +0000)
commit764f53eb6ccc55ad52ddfeed47485de76f4453bb
tree33a6e5816fadec692d3d579271c23be36890a9a5
parent42812a2feec29873aa6ee594d1355948e78e92a3
spec: clarify conditions for switch expression type

1. The existing prose implied that a switch expression type must
   be comparable because it is tested for equality against all case
   expressions. But for an empty switch (no case expressions), it
   was not clear if the switch expression needed to be comparable.
   Require it to match the behavior of compiler and type checkers.

2. While making this change, remove redundant language explaining
   what happens with untyped boolean switch expression values: the
   default type of an untyped boolean value is bool, this is already
   covered by the first part of the relevant sentence.

Fixes #43200.

Change-Id: Id8e0f29cfa8722b57cd2b7b58cba85b58c5f842b
Reviewed-on: https://go-review.googlesource.com/c/go/+/314411
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Rob Pike <r@golang.org>
doc/go_spec.html