/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue39472.go
12 строк
250 B
Michael Munday
cmd/compile: always tighten and de-duplicate tuple selectors
10 июн 2020, 17:55
10 июн 2020, 17:55
ac743de
Код
Авторство
О чём код?
// compile -N // 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. package p func f(x float64) bool { x += 1 return (x != 0) == (x != 0) }