1#include <stdint.h>
2#include <stdio.h>
3
4struct Bytes {
5 uint8_t ubyte;
6 int8_t sbyte;
7};
8
9int main() {
10 struct Bytes bytes = {0x30, 0x01};
11 (void)bytes;
12 printf(format: "break here\n");
13}
14

source code of lldb/test/API/functionalities/data-formatter/custom-printf-summary/main.c