mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			145 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			145 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| struct Foo<T> {
 | |
| //~^ ERROR recursive type `Foo` has infinite size
 | |
|     x: Foo<[T; 1]>,
 | |
|     y: T,
 | |
| }
 | |
| 
 | |
| struct Bar {
 | |
|     x: Foo<Bar>,
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
