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