blob: fb21ba7fd8ec82e1c924334dfcf99f06e59e628d [file]
// The real entry point. The default source file for line-only breakpoints
// should resolve to this file, not to other.cpp's ns::main.
namespace ns {
int main();
}
int main(int argc, char **argv) {
int local = argc; // BREAK: entry point
return ns::main() + local;
}