Files
clang-p2996/lldb/test/python_api/breakpoint/main.c
Jim Ingham e029fa5781 If a breakpoint gets deleted, any SBBreakpoints representing that
breakpoint should return false from IsValid.

llvm-svn: 212206
2014-07-02 18:44:43 +00:00

15 lines
118 B
C

#include <stdio.h>
void
AFunction()
{
printf ("I am a function.\n");
}
int
main ()
{
AFunction();
return 0;
}