/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue48301.go
13 строк
308 B
Robert Griesemer
go/types, types2: more concise error messages for cycle errors
29 сен 2022, 17:21
29 сен 2022, 17:21
e22af33
Код
Авторство
О чём код?
// errorcheck // Copyright 2021 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. // Don't crash while reporting the error. package p func _() { type T = T // ERROR "invalid recursive type: T refers to itself" }