/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue79960.go
14 строк
263 B
Cuong Manh Le
cmd/compile: relax ConvertVal assertion for non-constant conversions
11 июн 2026, 21:29
11 июн 2026, 21:29
8fd906a
Код
Авторство
О чём код?
// compile // Copyright 2026 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[T []byte | []rune]() { _ = T("") } var _ = f[[]rune] var _ = f[[]byte]