mirror of
https://github.com/golang/go
synced 2024-11-12 01:10:21 -07:00
7b5789b584
Fixes #582. Update #287 Status: Accepted Bug fix was too intrusive; undo and reopen issue. R=ken2 CC=golang-dev https://golang.org/cl/209044
17 lines
328 B
Go
17 lines
328 B
Go
// errchk $G -e $D/$F.go
|
|
|
|
// Copyright 2010 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
|
|
|
|
type T U // bogus "invalid recursive type T" from 6g
|
|
type U int
|
|
|
|
const x T = 123
|
|
|
|
type V V // ERROR "invalid recursive type"
|
|
|
|
|