summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/import-std-module/weak_ptr/main.cpp
blob: 13479eb94961ef4a6f78e8f0756bd58decf4b52c (plain)
1
2
3
4
5
6
7
8
#include <memory>

int main(int argc, char **argv) {
  std::shared_ptr<int> s(new int);
  *s = 3;
  std::weak_ptr<int> w = s;
  return *s; // Set break point at this line.
}