xref: /llvm-project/lldb/test/API/source-manager/artificial_location.cpp (revision 39b2979a434e70a4ce76d4adf91572dcfc9662ff)
1*39b2979aSPavel Labath #include "artificial_location.h"
2*39b2979aSPavel Labath 
3*39b2979aSPavel Labath int A::foo() {
4*39b2979aSPavel Labath #line 0
5*39b2979aSPavel Labath   return 42;
6*39b2979aSPavel Labath }
7*39b2979aSPavel Labath 
8*39b2979aSPavel Labath int main() { return A::foo(); }
9