On commit `8dffc02ea1cb8398bb73f30424697c60fcf8d4c5` the following code panics: ```go a := "a" b := "b" ab := a + b if len(a+b) != len(ab) { panic("unreachable") } ``` Using `go1.10.3 darwin/amd64` it does not.