aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/bool/main.cpp
blob: c70a8cdef695eee301f5e31a864e4cf94b2b3087 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
  bool my_bool = false;

  printf("%s\n", my_bool ? "true" : "false"); // breakpoint 1
}