aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/function-call-from-object-file/lib1.cpp
blob: b97bcc1b712b6003f48e140325e5c3954b70889d (plain)
1
2
3
4
5
6
7
8
#include "common.h"

// Parameter "Foo*" forces LLDB to parse "Foo" from the object
// file that it is stopped in.
void lib1_func(Foo *) {
  // Force definition into lib1.o debug-info.
  Foo{}.foo();
}