/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue68415.go
19 строк
353 B
Cherry Mui
cmd/compile: don't inline runtime functions in -d=checkptr build
22 июл 2024, 18:45
22 июл 2024, 18:45
f0de94f
Код
Авторство
О чём код?
// run -gcflags=all=-d=checkptr // Copyright 2024 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 main import ( "regexp" "unique" ) var dataFileRegexp = regexp.MustCompile(`^data\.\d+\.bin$`) func main() { _ = dataFileRegexp unique.Make("") }