Files
llvm-project/lldb/test/API/lang/cpp/bool/main.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
122 B
C++
Raw Normal View History

#include <stdio.h>
int main()
{
bool my_bool = false;
printf("%s\n", my_bool ? "true" : "false"); // breakpoint 1
}