mirror of
https://github.com/golang/go
synced 2024-11-06 00:36:14 -07:00
bcb563f4db
Fixes #23298 Change-Id: I107c6f3a80db83f063c0daf262c6e7f7492e4d4c Reviewed-on: https://go-review.googlesource.com/87695 Run-TryBot: Kunpei Sakai <namusyaka@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
15 lines
233 B
Go
15 lines
233 B
Go
// 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)
|
|
)
|