/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue42075.go
16 строк
278 B
Matthew Dempsky
cmd/compile: fix ICE in reporting of invalid recursive types
20 окт 2020, 00:30
20 окт 2020, 00:30
c216ae8
Код
Авторство
О чём код?
// errorcheck // Copyright 2020 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 import "unsafe" type T struct { // ERROR "recursive type" x int p unsafe.Pointer f T }