mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			450 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			450 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags: -g
 | |
| //
 | |
| // CHECK-LABEL: @main
 | |
| // MSVC: {{.*}}DIDerivedType(tag: DW_TAG_pointer_type, name: "recursive_type$ (*)()",{{.*}}
 | |
| // NONMSVC: {{.*}}DIDerivedType(tag: DW_TAG_pointer_type, name: "fn() -> <recursive_type>",{{.*}}
 | |
| //
 | |
| // CHECK: {{.*}}DISubroutineType{{.*}}
 | |
| // CHECK: {{.*}}DIBasicType(name: "<recur_type>", size: {{32|64}}, encoding: DW_ATE_unsigned)
 | |
| 
 | |
| pub fn foo() -> impl Copy {
 | |
|     foo
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let my_res = foo();
 | |
| }
 | 
