/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue13262.go
21 строка
386 B
Alberto Donizetti
cmd/compile: fix bogus "fallthrough statement out of place"
26 сен 2016, 18:46
26 сен 2016, 18:46
375092b
Код
Авторство
О чём код?
// compile // Copyright 2016 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 13262: cmd/compile: bogus "fallthrough // statement out of place" error package p func f() int { var a int switch a { case 0: return func() int { return 1 }() fallthrough default: } return 0 }