mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			125 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			125 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| struct MyStruct
 | |
| {
 | |
|     int x;
 | |
|     struct s* next;
 | |
| };
 | |
| 
 | |
| int foo()
 | |
| {
 | |
|     MyStruct s;
 | |
|     printf("%d\n", s.x);
 | |
|     return s.x;
 | |
| }
 | 
