llvm/lldb/test/API/lang/cpp/incomplete-stl-types/main.cpp

#include <set>

void f(std::set<int> &v);

int main() {
  std::set<int> v;
  f(v);
}