summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/main.cpp
blob: e49b862a36c6b05822febf7b279a2d1a65d4d3db (plain)
1
2
3
4
5
6
7
8
9
10
#include <cstdlib>
#include <utility>

int main(int argc, char **argv) {
  std::size_t f = argc;
  f = std::abs(argc);
  f = std::div(argc * 2, argc).quot;
  std::swap(f, f);
  return f; // Set break point at this line.
}
OpenPOWER on IntegriCloud