mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
136 B
C
8 lines
136 B
C
#pragma once
|
|
|
|
typedef struct {
|
|
unsigned long long arr[16];
|
|
} large_thing;
|
|
|
|
large_thing pass_and_return(large_thing a, large_thing b);
|