mirror of
				https://github.com/golang/go.git
				synced 2025-10-31 16:50:58 +00:00 
			
		
		
		
	 7b5789b584
			
		
	
	
		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
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 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"
 | |
| 
 | |
| 
 |