/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue23298.go
14 строк
233 B
Kunpei Sakai
cmd/compile: allow converting defined string types to []rune
15 фев 2018, 03:25
15 фев 2018, 03:25
bcb563f
Код
Авторство
О чём код?
// compile // Copyright 2018 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 type T string var ( t = T("T") r = []rune(t) )