Files
swift-mirror/test/IRGen/Inputs/fnptr.h
Arnold Schwaighofer db613494f0 IRGen: Thin function values may carry a precise pointer to function type rather than i8*
Tolerate the more precise pointer value when storing

rdar://103964986
2023-01-20 16:09:26 -08:00

11 lines
131 B
C

#ifndef fnptr_h
#define fnptr_h
#include <stddef.h>
typedef struct {
void (* _Nonnull fnptr)(size_t *);
} Container;
#endif