aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/basename/main.cpp
blob: 9b4140985cf45eb072ab0cb0cbe5fa4dc55b04ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

namespace ns {
template <typename T> class MyClass {
public:
  void templateFunc() {
    std::cout << "In templateFunc" << std::endl; // Set a breakpoint here
  }
};
} // namespace ns

int main() {
  ns::MyClass<int> obj;
  obj.templateFunc();
  return 0;
}