mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
	
		
			126 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
	
		
			126 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | from __future__ import annotations | ||
|  | 
 | ||
|  | import dataclasses | ||
|  | 
 | ||
|  | 
 | ||
|  | class Foo: | ||
|  |     pass | ||
|  | 
 | ||
|  | 
 | ||
|  | @dataclasses.dataclass | ||
|  | class Bar: | ||
|  |     foo: Foo |