1#include <stdio.h>
2
3char g = 0;
4signed char gs = 0;
5unsigned char gu = 0;
6
7int foo(char c) { return 1; }
8int foo(signed char c) { return 2; }
9int foo(unsigned char c) { return 3; }
10
11int main() {
12 char c = 0;
13 signed char sc = 0;
14 unsigned char uc = 0;
15 printf(format: "%d %d %d\n", foo(c), foo(c: sc), foo(c: uc));
16 return 0; // Break here
17}
18

source code of lldb/test/API/commands/expression/char/main.cpp