Adrian Prantl d1bc75c0bc Convert ValueObject::Dump() to return llvm::Error() (NFCish)
This change by itself has no measurable effect on the LLDB
testsuite. I'm making it in preparation for threading through more
errors in the Swift language plugin.
2024-06-20 10:32:06 -07:00

15 lines
217 B
C

struct Structure {
int number;
};
struct Opaque;
int puts(const char *s);
int main(int argc, char **argv) {
struct Structure s;
s.number = 30;
struct Opaque *opaque = &s;
puts("break here");
return 0;
}